CRC-20 PoW Mechanism
1.Deploy
When you're setting up the CRC-20 protocol, you get to adjust the difficulty parameter, which basically controls how tough the Proof of Work (PoW) mining is. So, for example, if you set it at 4, you'd need a mining threshold difficulty of '0x0000'.
2.Mint
When users mint, they've gotta keep churning out different hashes by randomly picking nonces to beat that difficulty level. Check out our open-source frontend code below:
Once you've discovered the correct 'nonce', submit the accurate mint JSON to the blockchain.
3.Index
Our indexer will conduct a secondary check. If the 'nonce' you provide is invalid, your mint attempt will be considered unsuccessful.
Last updated