Mystery Boxes
BOTO NFTs
Our one-of-a-kind gaming system allows players and merchants to earn unique digital collectibles called BoTos. You can unlock a BRAHNOTIME by using our KEY tokens and generate or mint a BOTO on the SOL blockchain.

1. According to the amount of KEYs or BATs obtained from Crates, user's can use them to unlock Chests(must be whole number) to mint NFTs.
2. Users can also purchase KEYs or BATs from the market to unlock Chests to mint NFTs.
3. New BATes can only be unlocked when there are 0 Chests being unlocked in the queue. (No pending transactions)
4. For a single transaction, the maximum number of Chests is 500, and the maximum Chests that can be unlocked is 50.
Fair and Transparent NFT Loot BAT
To ensure that the process of generating NFTs is completely random, the following method is used:
Random seed is generated using the block hash of when the key is used to unlock a chest + the user's SOL public address.
order.blockHash = bytes32(uint256(hash) + uint256(addr));
Each time a chest is unlocked, the hash will be calculated again
order.blockHash= keccak256(abi.encodePacked(order.blockHash));
Last updated