You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to optimize the signer memory usage on the SPO infrastructure when signing Cardano transactions, we need our Merkle tree library to support multiple/custom store implementations optimized for:
Proving in the aggregator: fast but memory intensive (serves both signature and proving)
Signing in the signer: slower but memory optimized (serves only signature)
What
Implement a Merkle tree store with optimized memory usage in the signer.
How
Upgrade the Merkle tree implementation to support multiple stores
Implement a store for the signer with optimized memory usage based on SQLite
Benchmark the new signer store
Update the signer footprint in documentation
The text was updated successfully, but these errors were encountered:
Why
In order to optimize the signer memory usage on the SPO infrastructure when signing Cardano transactions, we need our Merkle tree library to support multiple/custom store implementations optimized for:
What
Implement a Merkle tree store with optimized memory usage in the signer.
How
The text was updated successfully, but these errors were encountered: