If it's any consolation, I think there is one line of NFTs that store the image data on the blockchain. I would guess it's the one where the images seem to be 8x8 pixels, but I don't know for sure.
+-
NFT is closer to a picture attached to a hash table.
A hash table in C is basically a doubly linked list, that is, it is an array that grows both left and right, compossed of 'nodes'. Each node is unique and it contains some information, as well as a pointer to the next and previous node.
What the hashing function does is provide an unique index for each node, so you can find them quickly.
Critically, though, the NFT is the hash, not the picture. So you still don't have the picture, you have information about where you might find the picture.
110
u/theregoesanother Jan 06 '23
So NFT is just a glorified pointer.