YK

Results 10 issues of YK

The Requirements.txt was not working for me as the tensorflow version wasn't labelled. After changing it to 1.7, it started to work.

This PR attempts to integrate the chain specific headtracker on the EVM generalised platform based on the Epic ticket on [chain specific headtracker](https://smartcontract-it.atlassian.net/browse/BCI-887?jql=labels%20%3D%20%22intern-yongkang-2023%22). This is a POC on how likely...

do not merge
poc

This PR implements implements chain specific transaction type based on the generic Transaction manager transaction interface. **Context:** - In order for cosmos to make use of generic txm logic, it...

Context: - To implement chain specific `TxAttemptBuilder` and `TxTypes` , this PR moves over the necessary generalised Tx types. Notes: - Need help to check if the folder import location...

do-not-merge

**Describe the bug** I am trying to deploy eliza on [gce](https://cloud.google.com/products/compute?hl=en), however i am getting error on authentication error 399 when logging in causing the login to fail. ```json {...

bug

Implement adaptive worker pool scaling for parallel proof workers. Currently workers are statically allocated (see #19700), causing over-provisioning during low load and under-provisioning during spikes (e.g., Xen storage node bursts)....

C-enhancement
C-perf
S-needs-benchmark
A-trie

## Summary Changes the default worker count calculation to enforce a **minimum of 32 workers** instead of a maximum. **Before**: `min(cpu_count * 2, 32)` - capped at 32 maximum **After**:...

Add max chunking limit for storage proof fetching ### Problem State root computation has significant outliers on Base where time spikes from ~20% average to 80%+ of block processing, taking...

S-needs-investigation
C-perf
S-needs-benchmark
A-trie

Closes #19249 Eliminates sorting overhead per block by returning `TrieInputSorted` instead of unsorted `TrieInput` from `compute_trie_input`, and have `ExecutedBlock` utilise the `TrieInputSorted` Previously, `MultiProofConfig::from_input()` would call `drain_into_sorted()` on both nodes...

C-perf
A-engine
A-trie

closes: https://github.com/paradigmxyz/reth/issues/18527 This PR optimizes batch transaction validation by refactoring the TransactionValidator trait. The validation process is now split into two distinct steps: `validate_transaction_stateless` and `validate_transaction_stateful`. The`TransactionValidationTaskExecutor` now 1. runs...