NFT Provenance
NFTs are trivial to clone. The token standard binds a(contract, tokenId) pair to a URI, but nothing at the protocol level says the URI is authentic, the artist is who the listing claims, or the same work has not been minted on five other chains by impostors. Notareum binds an NFT (or an entire collection) to a creator identity via a signed .nota file, then anchors that binding in NotaRegistry where marketplaces and wallets can check it before they render, list, or buy.
What gets bound
Two levels of binding are useful:- Collection-level
.notafor the deployed ERC-721/ERC-1155 contract. Proves “this collection was created by this artist/studio”. Issued once per deployment. - Token-level
.notafor a specific(contract, tokenId). Proves “this specific edition is authorized by the creator with this metadata”. Issued per mint or per edition.
Creating a collection .nota
metadataBaseUri and metadataHash let a consumer check that the contract’s tokenURI output is under the registered base and hashes to the expected root. Any drift signals tampered metadata.
Creating a token .nota
identifier encodes the composite (contract, tokenId) so the deterministic resource ID is unique per token. The SDK uses : as the separator by convention.
Detecting fakes
A marketplace renders a listing by looking up the collection contract inNotaRegistry:
Cross-chain provenance
A single artist often mints the same work on Ethereum, Polygon, Base, and Solana. Notareum represents this with multiple.nota files sharing the same issuer key but different (chainId, identifier) pairs, plus an optional canonicalResource field that points to the original mint:
canonicalResource to find the original and its verification status. This defeats the “collection was minted on mainnet, fakes mint on L2” class of fraud.
Secondary market receipts
Each sale can produce a receipt.nota containing:
- The on-chain transaction hash.
- The seller, buyer, and marketplace identities.
- Royalty destination (and whether royalties were honored).
- Price, currency, and timestamp.
Artist workflows
- Identity registration. The artist registers a self-describing
.notaof type"address"with an alias (e.g.,alba.art). All subsequent collection.notafiles come from the same key and inherit reputation. - Studio delegation. A studio can register a multisig as issuer. Attestations from individual artists are layered as additional signatures on the
.notafile via the optionalcoSignersfield. - License metadata. SPDX license codes in
resourceMetadata.licenseSpdxgive marketplaces a machine-readable license badge.
Integration patterns
- OpenSea-class marketplaces check collection
.notabefore rendering a “verified creator” badge. - Wallets flag NFTs from unregistered collections during display.
- Aggregators filter phishing airdrops by requiring at least a registered, non-revoked
.notabefore the token is shown in a user’s inventory. - IP tooling uses
licenseSpdxto auto-generate license enforcement pages.

