You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CIP 14 asset fingerprints are great for interoperability between wallets, NFT viewers/websites and marketplaces, but as they are not bijective, they require a mapping to lookup an asset from its fingerprint.
It would be great to have this mapping provided by cardano-db-sync.
To save space and guarantee consistency, it might also be a good opportunity to add an asset table with the policy id, asset name & fingerprint and reference it from ma_tx_mint and ma_tx_out tables.
The text was updated successfully, but these errors were encountered:
* Add a new table `multi_asset` which includes the asset fingerprint.
* Add a reference from `ma_tx_mint` and `ma_tx_out` to `multi_asset`.
* Drop the `policy` and `name` fields of `ma_tx_mint` and `ma_tx_out`.
Closes: #868
* Add a new table `multi_asset` which includes the asset fingerprint.
* Add a reference from `ma_tx_mint` and `ma_tx_out` to `multi_asset`.
* Drop the `policy` and `name` fields of `ma_tx_mint` and `ma_tx_out`.
Closes: #868
* Add a new table `multi_asset` which includes the asset fingerprint.
* Add a reference from `ma_tx_mint` and `ma_tx_out` to `multi_asset`.
* Drop the `policy` and `name` fields of `ma_tx_mint` and `ma_tx_out`.
Closes: #868
* Add a new table `multi_asset` which includes the asset fingerprint.
* Add a reference from `ma_tx_mint` and `ma_tx_out` to `multi_asset`.
* Drop the `policy` and `name` fields of `ma_tx_mint` and `ma_tx_out`.
Cherry pick of 97fb1c4 from master.
Closes: #868
CIP 14 asset fingerprints are great for interoperability between wallets, NFT viewers/websites and marketplaces, but as they are not bijective, they require a mapping to lookup an asset from its fingerprint.
It would be great to have this mapping provided by cardano-db-sync.
An Haskell reference implementation is provided in the CIP:
https://cips.cardano.org/cips/cip14/#referenceimplementation
As well as test vectors:
https://cips.cardano.org/cips/cip14/#testvectors
To save space and guarantee consistency, it might also be a good opportunity to add an asset table with the policy id, asset name & fingerprint and reference it from
ma_tx_mint
andma_tx_out
tables.The text was updated successfully, but these errors were encountered: