Skip to main content

Erc20.signature property

Signature Minting

Example

// see how to craft a payload to sign in the `contract.erc20.signature.generate()` documentation
const signedPayload = contract.erc20.signature().generate(payload);

// now the payload can be used to mint tokens
const tx = contract.erc20.signature.mint(signedPayload);

Signature:

get signature(): Erc20SignatureMintable;

Remarks

Generate dynamic tokens with your own signature, and let others mint them using that signature.