jarry-xiao / candyland

Proof of concept program for compressing NFTs
GNU Affero General Public License v3.0
111 stars 13 forks source link

[Proposal] Separate out Ingester from API #56

Closed ngundotra closed 2 years ago

ngundotra commented 2 years ago
nft_api/
.. main.rs (only serves REST requests by reading from postgres)
  should not have anything related to `program`
  should shape into an RPC call extension
nft_ingester/
.. main.rs (consumes from Redis Messenger, writes to postgres)
  has all `program` related parsing/knowledge
ngundotra commented 2 years ago

Addressed by #63