blockscout-rs icon indicating copy to clipboard operation
blockscout-rs copied to clipboard

eth-bytecode-db extractors: initialization

Open rimrakhimov opened this issue 2 years ago • 0 comments

Starts blockscout extractor implementation. Initializes crate for extractors. Initialize initial migrations, according to schema.

The database migrations were intentionally implemented through the sea-orm framework to being possible to apply them to any database backend supported by sea-orm. That should allow to run the extractor locally with some local in-memory database (e.g. Sqlite)

One noticeable difference with other services design is that migrations were extracted into a root eth-bytecode-db directory instead of being implemented inside extractors crate. The reason is that in that case there would be 2 crates with the same name (migration) in one workspace: one for migrations in eth-bytecode-db and one for migrations in extractors. To solve the problem I suggest to extract migration and entity crates to root service directory.

rimrakhimov avatar Dec 23 '22 08:12 rimrakhimov