Will Winder
Will Winder
### Subject of the issue If https://github.com/algorand/go-algorand/pull/4272 is merged, we will be able to replace `processor/blockprocessor/eval` with a direct call to `StartEvaluator` / `EvaluatorOptions`. This would allow us to simplify...
Add an option for the postgres IndexerDb writer to discard old transaction data by date. * Way to supply the configuration: one shot and/or continuous/daily. * Mechanism to delete the...
### Subject of the issue Address mockery warning, we need to install the binary directly instead of using `go intall`: ``` ~$ make test go install github.com/vektra/mockery/[email protected] cd idb &&...
Allow running Indexer in non-archival mode. * RFC * Start from a catchpoint. * After finishing, copy the entire ledger to the writer. * How do you pass this data...
We are building interfaces for Import / Process / Export, and components that implement those interfaces. As more are created it becomes useful to mix and match depending on the...
* Create RFC * Update interface * Create File Importer plugin. * Test interoperability between Importer and Local Ledger * Add configuration file for the filtering config. * file should...
Add optional file option to configure the filter plugin. This file goes in the data directory, use a name like `data_filter.yml`
Integration testing for different options to ensure the IndexerDb writer is able handle the truncated data.
Implement a new Processor for filtering data. At a minimum it should allow the following options: * Filter by address (sender/receiver/etc) * Filter by app-id * Filter by asset-id *...
We created a first draft for the Processor with Local Ledger. There are a couple small problems. The main one being that it isn't chain-able. The Input data does not...