Page cover image

🥇Points System

In order to effectively distribute the $LGNDX token to Titan Legends holders, we developed a points system to determine exactly how many tokens each type of NFT would receive per Bounty claim. This system involves assessing the total quantity of the main four types of NFTs, assigning a multiplier to each, and then calculating the corresponding token amount from the bounty pool. What we determined is that each point equals exactly 59,954.112 $LGNDX tokens. The table below shows the points breakdown for each type of NFT.

TYPE
x
TOTAL TOKENS

FIRE BREATHER

10

599,541.120

LEGENDARY

28

1,678,715.137

GHOST DRAGON

80

4,796,328.962

BABY DRAGONS

80

4,796,328.962

Below is how the multiplier is calculated in the TitanLegendsBattlefield contract:

    function getMultiplier(uint256 tokenId) public pure returns (uint256) {
        if (
            tokenId == 46 ||
            tokenId == 135 ||
            tokenId == 212 ||
            tokenId == 225 ||
            tokenId == 427 ||
            tokenId == 532 ||
            tokenId == 591 ||
            tokenId == 694 ||
            tokenId == 735 ||
            tokenId == 811 ||
            tokenId == 946 ||
            tokenId == 1139 ||
            tokenId == 1210 ||
            tokenId == 1237 ||
            tokenId == 1357 ||
            tokenId == 1457 ||
            tokenId == 1503 ||
            tokenId == 1561 ||
            tokenId == 1663 ||
            tokenId == 1876 ||
            tokenId == 1996 ||
            tokenId == 2089 ||
            tokenId == 2251
        ) return 80;
        if (tokenId > 1500) return 28;
        return 10;

Last updated