How does OpenSea work with all the functions?

185 views Asked by At

I know it has smart contracts at the backend but how does it store the profile picture for an address ? and also likes and dislikes and auction and all other functionalities. Can somebody please explain this I have searched a lot and can not find a in depth explanation for the architecture ?

1

There are 1 answers

0
Petr Hejda On

how does it store the profile picture for an address ? and also likes and dislikes and auction and all other functionalities.

These are platform specific data for OpenSea, not part of the collection contract. Meaning they are not stored onchain.

So without knowing source codes of the OpenSea platform, we can only guess the exact location where the data is stored, but my educated guess is a relational DB (e.g. PostgreSQL, MariaDB, ...).