Quantity Types
Due to gas fees, options for token quantity types are provided.
Single Token Order - This type of order merges all quantities of the order into a single token. For example purchasing a quantity of 5 x sySPY will mint 1 token with the JSON metadata corresponding to a quantity of 5 sySPY items.
The value of the token is worth 5 x sySPY and can be sold back for such.
The advantage of implementing single token method, is that it is cheaper on gas fees for the end user to mint a single token with all quantities embedded.
The disadvantage is that the token is not quantity atomic, selling the token means selling all 5 x sySPY.
Multi Token Order - This type of order splits all quantities of the order into a multiple tokens. For example purchasing a quantity of 5 x sySPY will mint 5 separate tokens.
The value of each token is worth 1 x sySPY and can be sold back for such.
The advantage here is that the order is atomic. The user can sell each token individually at different times. This is useful for active trading.
The disadvantage is that minting multiple tokens means much higher gas fees.
Last updated