Galoretka

Results 33 issues of Galoretka

Fix incorrect relative path to doxygen documentation in src/snark/README.md - Change doxygen/index.html to ../doxygen/index.html - Resolves "Cannot find file" error for doxygen documentation

Replace ? on std::str::from_utf8 and JsError::from on hex::decode with explicit map_err(|e| JsError::new(&e.to_string())) in utf8_bytes_to_hex_decoded. Reason: there is no From or From for JsError, which causes a type-mismatch compilation error on...

- Add resolved_postgres_connection_string() method to PreferredSequencerConfig - Support SOV_SEQUENCER_POSTGRES_URL and DATABASE_URL env vars - Update sequencer to use resolved connection string - Add documentation with precedence and usage examples Resolves...

- Generate unique Id::String from the subscription’s local id for eth_unsubscribe. - Serialize the request, wrap in InFlight, and send via service_request to register in RequestManager. - Prevents id collisions...

Updated the derivation design docs to reflect the current code paths and public APIs used by DerivationActor and the online derivation pipeline. The produce_next_attributes example now uses mpsc::Sender which matches...

Adjust checkPastInactivity to measure data sufficiency using only epochs strictly before the current one, ensuring the consecutive inactivity threshold cannot be met by including current-epoch data. Previously, the code compared...

Fixed repeated typo "Accesssing" → "Accessing" in starky/src/interpreter.rs. Corrected spelling of "aggregate" in a comment in starky/src/pil2circom.rs.

- Added missing space in Utils.md example comment - Corrected "An NobleEd25519Signer" → "A NobleEd25519Signer" - Fixed possessive form: "Signers private key" → "Signer's private key" - Corrected typo in...

The buffer was zeroed after each full chunk in KangarooTwelveCore::process_chunk(). This is unnecessary because subsequent reads only consume [..bufpos] and bufpos is reset to 0. Removing the memset avoids extra...

The previous iteration returned the first error in the etherscan configs, even if a valid config for the requested chain existed later. This was inconsistent with the function’s doc (“Returns...