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
We want to read data from the chain to retrieve only blocks that have not been recorded in the database yet.
This will allow deploying the signature of the Cardano transactions on the testing-preview network.
What
Implement incremental storage for Cardano transactions:
Detect the list of immutable file numbers for which transactions are not stored yet
Store the transactions of the non recorded yet immutable file number
Use store to retrieve transactions when creating signature and proofs
How
Create new CardanoTransactionImporter that does the work of TransactionParser and TransactionStore on the aggregator (and temporarily on the signer so we expect code duplication here at first)
Store slot_number and block_hash in Cardano transactions store in signer and aggregator (MultiEraBlock: block.hash() and block.slot())
Implement CardanoTransactionImporter detection of the list of immutable file numbers for which transactions are not stored yet (starting point)
Implement CardanoTransactionImporter retrieval of blocks given start point
Implement CardanoTransactionImporter storage of blocks
Activate the signature of Cardano transactions on testing-preview
The text was updated successfully, but these errors were encountered:
Why
We want to read data from the chain to retrieve only blocks that have not been recorded in the database yet.
This will allow deploying the signature of the Cardano transactions on the
testing-preview
network.What
Implement incremental storage for Cardano transactions:
How
CardanoTransactionImporter
that does the work ofTransactionParser
andTransactionStore
on the aggregator (and temporarily on the signer so we expect code duplication here at first)slot_number
andblock_hash
in Cardano transactions store in signer and aggregator (MultiEraBlock: block.hash() and block.slot()
)CardanoTransactionImporter
detection of the list of immutable file numbers for which transactions are not stored yet (starting point)CardanoTransactionImporter
retrieval of blocks given start pointCardanoTransactionImporter
storage of blockstesting-preview
The text was updated successfully, but these errors were encountered: