Multi-Token Standard

Semi-Fungible Tokens

Tokens standards like ERC-20 and ERC-721 require a separate contract to be deployed for each token type or collection. This places a lot of redundant bytecode on the blockchain and limits certain functionality by the nature of separating each token contract into its own permissioned address.

New functionality has been introduced in the form of a multi-token standard to overcome these shortcomings. A single contract can contain both attributes; fungibility and non-fungibility. This design enables the transfer of multiple token types at once, saving on transaction costs.

Last updated