Signature minting design document.
This is a live document that explains the 'signature minting' mechanism used in thirdweb Token
smart contracts.
The document is written for technical and non-technical readers. To ask further questions about any of thirdweb's Drop
, please visit our support site or create a github issue.
The 'signature minting' mechanism used in thirdweb Token
smart contracts is a way for a contract admin to
authorize an external party's request to mint tokens on the admin's contract. At a high level, this means you can authorize some external party to mint tokens on your contract, and specify what exactly will be minted by that external party.
A contract admin signs a 'payload' or 'mint request' which specifies parameters around a mint e.g. which address should tokens be minted to, what price should be collected in exchange for the minted tokens, etc.
Any external party can then present a smart contract implementing the 'signature minting' mechanism with a payload, along with the signature generated from a contract admin signing the payload. Tokens will then be minted according to the information specified in the payload.
The following diagram illustrates how the 'signature minting' flow looks like. For example, consider a webapp like wombo.art which lets a user generate artwork on its website. Once a user has generated artwork on the wombo website, wombo can allow the user to mint their generated artwork as an NFT on wombo's own contract, where wombo can ensure that what the user will mint on wombo's contract is the intended generated artwork.
Why we're developing Signature Minting
We've observed that there are largely three distinct contexts under which one mints tokens:
- Minting tokens for yourself on a contract you own. E.g. a person wants to mint their Twitter profile picture as an NFT.
- Having an audience mint tokens on a contract you own.
- The nature of tokens to be minted by the audience is pre-determined by the contract admin. E.g. a 10k NFT drop where the contents of the NFTs to be minted by the audience is already known and determined by the contract admin before the audience comes in to mint NFTs.
- The nature of tokens to be minted by the audience is not pre-determined by the contract admin. E.g. a course ‘certificate' dynamically generated with the name of the course participant, to be minted by the course participant at the time of course completion.
The thirdweb Drop
contracts serve the cases described in 2(i).
The thirdweb Token
contracts serve the cases described in (1) and 2(ii). And the 'signature minting' mechanism is particularly designed to serve the case described in 2(ii).
We'll now go over the technical details involved in the 'signature minting' mechanism illustrated in the diagram in the preceding section.
We'll now cover what makes up a payload, or 'mint request':
The described fields in MintRequest
are what make up a payload or 'mint request'. This is the payload that a contract admin signs off, to be used by an external party to mint tokens on the admin's contract.
When any external party presents a payload to the contract implementing the 'signature minting' mechanism, tokens are minted exactly according to the information specified in the presented MintRequest
.
Any external party can present a smart contract implementing the 'signature minting' mechanism with a payload, along with the signature generated from a contract admin signing the payload. Tokens will then be minted according to the information specified in the payload.
To mint tokens with a payload, the following function is called:
The contract implementing the 'signature minting' mechanism first recover's the address of the signer from the given payload i.e. req
and the signature
, and verifies that an authorized address has signed off this incoming mint request.
Once verified, tokens are minted according to the information specified in the payload.