bryanlabs/cosmos-indexer-sdk

Extend DB insert methods to pass indexed data back to caller

Closed this issue · 1 comments

The DB insert methods will need to gather all indexed data and pass it back to the caller.

Currently, the base parsed data comes into the DB methods in helper wrappers that maintain data associations before DB insert. The data is then inserted into the DB where associations built. These indexed datasets will then have their association values filled out according to the gorm spec.

Passing the data back after index will allow passing this indexed data to custom parser index methods so custom parsers may use the indexed data to build subsequent associations.