SashaMalysehko
SashaMalysehko
### Problem The `getRecordsForGroup` function in `src/utils/records.ts` lacks pagination and sorting capabilities, as indicated by two TODO comments: - "todo: add pagination support here" - "todo: add the ability to...
Switched Buffer.from(...).toString() to new TextDecoder().decode(...) in insert13Before10. Removes Node-only Buffer usage and resolves TS linter error “Cannot find name 'Buffer'”. Improves portability (works in browsers and Node) without changing behavior.
Time spent on this PR: 0.5 days ## Pull request type Please check the type of change your PR introduces: - [ ] Bugfix - [x] Feature - [ ]...
Update the FV comments for EnumerableMap to describe the actual invariants over keys instead of values. The atUniqueness invariant now explicitly states that a key can only be stored at...
Removed ReverseOfByteSlice from cl/utils/bytes.go as dead code. The helper is not referenced anywhere in the current codebase, including tests, reflection, or linkname usage, and there are no public traces of...
The pseudocode used an undefined variable name (transaction) inside the for tx in block.transactions: loop. This causes a scope/name error and diverges from the convention used in EIP-4844. Replace transaction...