Features

Delegated Authorities

Having a single authority on our assets is not always ideal. Sometimes we want to delegate some of these responsibilities to other wallets or programs so they can do things on our behalf. This is why Token Metadata offers a whole set of delegates with different scopes.

Metadata vs Token Delegates

The delegates offered by Token Metadata can be split into two categories: the Metadata Delegates and the Token Delegates. We'll go through each of them in more detail below but let's have a quick look at how they differ.

  • Metadata Delegates are associated with the Mint account of the asset and allow the delegated authority to perform updates on the Metadata account. They are approved by the update authority of the asset and there can be as many as needed.
  • Token Delegates are associated with the Token account of the asset and allow the delegated authority to transfer, burn and/or lock the token(s). They are approved by the owner of the asset and there can only be one per token account at a time.

Metadata Delegates

Metadata Delegates are delegates that operate at the Metadata level. These delegates are stored using a Metadata Delegate Record PDA — whose seeds are ["metadata", program id, mint id, delegate role, update authority id, delegate id].

That account keeps track of the Delegate authority as well as the Update Authority that approved it.

Here are some key properties of Metadata Delegates:

  • There can be as many Metadata delegates as needed for a given asset.
  • Metadata delegates are derived from the Mint account which means they exist regardless of the owner of the asset. Thus, transferring an asset does not affect the Metadata delegates.
  • Metadata delegates are also derived from the current Update Authority of the asset. This means, whenever the Update Authority is updated on an asset, all Metadata delegates are voided and cannot be used by the new Update Authority. However, if the Update Authority was to be transferred back, all Metadata delegates associated with it would automatically reactivate.
  • Metadata delegates can be revoked by the Update Authority that approved them.
  • Metadata delegates can also revoke themselves.

There exist 7 different types of Metadata Delegates, each with a different scope of action. Here is a table summarizing the different types of Metadata Delegates:

DelegateSelf-updatesUpdate items in collectionUpdate scope
Authority ItemnewUpdateAuthority ,primarySaleHappened ,isMutable ,tokenStandard
Collectioncollection + verify/unverify collection on items
Collection Itemcollection
Datadata
Data Itemdata
Programmable ConfigsprogrammableConfigs
Programmable Configs ItemprogrammableConfigs

Notice that the Metadata delegates whose name ends with Item can only act on themselves, whereas the other ones can also act on the collection items of the delegate asset. For instance, say we have a Collection NFT A that includes NFTs B and C. When we approve a Data delegate on A, we can update the data object of NFTs A, B and C. However, when we approve a Data Item delegate on A, we can only update the data object of NFT A.

Additionally, the Collection delegate is a little special as it also allows us to verify/unverify the delegated NFT on the items of the collection. In the example above, when we approve a Collection delegate on A, we can verify/unverify that collection on NFTs B and C.

Let's go through each of these Metadata delegates in a bit more detail and provide code samples for approving, revoking and using them.

Authority Item Delegate

  • The Delegate Authority can update a sub-set of the asset. It can update the following properties of the Metadata account:
    • newUpdateAuthority: transfers the Update Authority to another account.
    • primarySaleHappened: toggles to true when the primary sale of the asset has happened.
    • isMutable: toggles to false to make the asset immutable.
    • tokenStandard: can set the token standard if the asset was created before it was mandatory to set it.

Work with Authority Item delegates

Collection Delegate

  • The Delegate Authority can update a sub-set of the asset. It can set the collection attribute of the Metadata account.
  • When applied to a Collection NFT, the Delegate Authority can perform the following actions on the items inside that Collection:
    • It can verify and unverify that Collection NFT on the item. It can only do this if the Collection NFT is already set on the item. Otherwise, there is no way of knowing that the item is part of the delegated Collection NFT.
    • It can clear the Collection NFT from the item.

Work with Collection delegates

Collection Item Delegate

  • The Delegate Authority can update a sub-set of the asset. It can set the collection attribute of the Metadata account.
  • Even if the asset is a Collection NFT, and contrary to the Collection Delegate, the Collection Item Delegate cannot affect the items of that collection.

Work with Collection Item delegates

Data Delegate

  • The Delegate Authority can update a sub-set of the asset. It can update the entire data object of the Metadata account but nothing else. This means it can update the creators of the asset.
  • Note that when updating the creators array inside the data object, it can only add and/or remove unverified creators.
  • When applied to a Collection NFT, the Delegate Authority can perform the same updates on the items inside that Collection.

Work with Data delegates

Data Item Delegate

  • The Delegate Authority can update a sub-set of the asset. It can update the entire data object of the Metadata account but nothing else. This means it can update the creators of the asset.
  • Note that when updating the creators array inside the data object, it can only add and/or remove unverified creators.
  • Even if the asset is a Collection NFT, and contrary to the Data Delegate, the Data Item Delegate cannot affect the items of that collection.

Work with Data Item delegates

Programmable Config Delegate

  • The Programmable Config Delegate is only relevant for Programmable Non-Fungibles.
  • The Delegate Authority can update the programmableConfigs attribute of the Metadata account but nothing else. This means it can update the ruleSet of the PNFT.
  • When applied to a Collection NFT, the Delegate Authority can perform the same updates on the items inside that Collection.

Work with Programmable Config delegates

Programmable Config Item Delegate

  • The Programmable Config Delegate is only relevant for Programmable Non-Fungibles.
  • The Delegate Authority can update the programmableConfigs attribute of the Metadata account but nothing else. This means it can update the ruleSet of the PNFT.
  • Even if the asset is a Collection NFT, and contrary to the Programmable Config Delegate, the Programmable Config Item Delegate cannot affect the items of that collection.

Work with Programmable Config Item delegates

Token Delegates

Token Delegates are delegates that operate at the Token level. This means they are spl-token delegates that are stored directly on the Token account of the SPL Token program. As such Token Delegates allow delegates to transfer and burn tokens on behalf of the owner but also lock and unlock tokens to prevent the owner from transferring, burning or even revoking the delegate. These delegates are crucial for applications like escrowless marketplaces, staking, asset loans, etc.

Whilst there is only one type of delegate offered by the SPL Token program, Programmable NFTs (PNFTs) allowed the Token Metadata program to provide more granular delegates that can be selected on a per-case basis. This is because PNFTs are always frozen on the SPL Token program which means we can build a delegate system on top of it.

We store that delegate system on a PNFT-specific account called the Token Record PDA — whose seeds are ["metadata", program id, mint id, "token_record", token account id]. We synchronise the delegated authority on the SPL Token program as well but the tokens are always frozen. It is the responsibility of the Token Record account to keep track of whether the asset is really locked or not.

Here are some key properties of Token Delegates:

  • There can only be one Token Delegate per token account. Setting a new Token Delegate on the same Token account will override the existing one.
  • Token delegates can be revoked by the owner of the asset as long as the asset is not locked.
  • Token delegates cannot revoke themselves as they are also set on the Token Program which does not allow the delegates to self-revoke.
  • Token delegates are reset on transfer. When dealing with fungible assets, the Delegate Authority is reset when all delegated tokens are transferred.
  • The Standard delegate can be used by all assets except Programmable Non-Fungibles. All other Token delegates can only be used by Programmable Non-Fungibles.
  • All Token delegates that can be used by Programmable Non-Fungibles store the current Delegate Authority, its role and its state — locked or unlocked — on the Token Record account of the PNFT.

There exist 6 different types of Token Delegates, each with a different scope of action. Here is a table summarizing the different types of Token Delegates:

DelegateLock/UnlockTransferBurnForNote
StandardAll except PNFTs
SalePNFTs onlyOwner cannot transfer/burn until they revoke the delegate
TransferPNFTs onlyOwner can transfer/burn even when a delegate is set
Locked TransferPNFTs only
UtilityPNFTs only
StakingPNFTs only

Notice that the Standard delegate has a lot more power than the other PNFT-specific delegates as we must simply defer to the spl-token delegate. However, the other delegates are more granular and can be used in more specific use cases. For instance, the Sale delegate is perfect for listing assets on marketplaces since they forbid the owner to burn or transfer as long as the delegate is set.

Let's go through each of these Token delegates in a bit more detail and provide code samples for approving, revoking and using them.

Standard Delegate

As mentioned above, the Standard Delegate is a wrapper around spl-token delegates. Whilst we could simply send instructions to the Token program directly, this delegate aims to offer the same API on Token Metadata regardless of the Token Standard. Additionally, Standard Delegates are able to lock/unlock assets which is not possible with native spl-token delegates.

Here are some key properties of the Standard Delegate:

  • This delegate does not work with Programmable Non-Fungibles.
  • The Delegate Authority can transfer the asset to any address. Doing so will revoke the Delegate Authority.
  • The Delegate Authority can burn the asset.
  • The Delegate Authority can lock the asset — also known as "freezing" the asset on the Token program. Until the Delegate Authority unlocks (or "thaw") the asset, the owner cannot transfer it, burn it, or revoke the Delegate Authority. This is specific to the Standard Delegate and cannot be done with a native spl-token delegate.
  • When used with fungible assets, an amount greater than 1 can be provided to specify the number of tokens to delegate to the Delegate Authority.

Work with Standard delegates

Sale Delegate (PNFT only)

  • This delegate only works with Programmable Non-Fungibles.
  • The Delegate Authority can transfer the PNFT to any address. Doing so will revoke the Delegate Authority.
  • As long as a Sale Delegate is set on a PNFT, the PNFT enters a special Token State called Listed. The Listed Token State is a softer variation of the Locked Token State. During that time, the owner cannot transfer or burn the PNFT. However, the owner can revoke the Sale Delegate at any time, which will remove the Listed Token State and make the PNFT transferable and burnable again.

Work with Sale delegates

Transfer Delegate (PNFT only)

  • This delegate only works with Programmable Non-Fungibles.
  • The Delegate Authority can transfer the PNFT to any address. Doing so will revoke the Delegate Authority.
  • Contrary to the Sale Delegate, when a Transfer Delegate is set, the owner can still transfer and burn the PNFT.

Work with Transfer delegates

Locked Transfer Delegate (PNFT only)

  • This delegate only works with Programmable Non-Fungibles.
  • The Delegate Authority can lock the PNFT. Until the Delegate Authority unlocks the PNFT, the owner cannot transfer it, burn it, or revoke the Delegate Authority.
  • The Delegate Authority can transfer the PNFT to any address. Doing so will revoke the Delegate Authority and unlock the PNFT if it was locked.

Work with Locked Transfer delegates

Utility Delegate (PNFT only)

  • This delegate only works with Programmable Non-Fungibles.
  • The Delegate Authority can lock the PNFT. Until the Delegate Authority unlocks the PNFT, the owner cannot transfer it, burn it, or revoke the Delegate Authority.
  • The Delegate Authority can burn the PNFT.

Work with Utility delegates

Staking Delegate (PNFT only)

  • This delegate only works with Programmable Non-Fungibles.
  • The Delegate Authority can lock the PNFT. Until the Delegate Authority unlocks the PNFT, the owner cannot transfer it, burn it, or revoke the Delegate Authority.

Work with Staking delegates

Legacy Delegates

Finally, it is worth noting that — before this delegate system — collection delegates used to be stored on a specific Collection Authority Record PDA. That PDA is similar to the Metadata Delegate Record except that it supports only one role: Collection. This legacy collection delegate is now deprecated and we recommend using the new delegate system instead.

That being said, the Token Metadata program still accepts these legacy collection delegates wherever a new Collection delegate is expected. This is done to ensure backward compatibility with assets that are still delegating to these legacy delegates.

You can learn more about them in the Token Metadata program directly.

Previous
Verified Creators