Create Decentralized ID Without Coding In 5 Minutes
The utilization of zero-knowledge proof in supporting a decentralized identity (DID) solution encounters challenges due to its inherent inability to share Personally Identifiable Information (PII), such as an individual’s name, social security number, or date of birth. Consequently, existing DID solutions like Polygon ID, Dock.io, …
List of Our Verified Smart Contracts With Their Source Code
Here’s the list of the smart contracts that we verified with their source code. You could use the code below to verify your contracts once you deployed them. ERC20 Contract: https://goerli.etherscan.io/address/0x30894c1e11e26da79c5c56e1d5b7b4820f6249fc#code Code: https://github.com/Mintnite/contracts/blob/main/ERC20Contract.sol ERC721NFT Contract: https://goerli.etherscan.io/address/0xaccfa20d0ab001868ef5d9fa8dbcfeec878dcb30#code Code: https://github.com/Mintnite/contracts/blob/main/ERC721NFT.sol ERC721SBT Contract: https://goerli.etherscan.io/address/0x4d0782dd93f942226a25acf88d94e0d528d789ff#code Code: https://github.com/Mintnite/contracts/blob/main/ERC721SBT.sol ERC1155 Contract: …
Real-World ERC1155 Use Case – Loyalty Program (Detailed Guide)
Even though ERC1155 was invented to serve blockchain-based games, there are other means of use for this token standard that offers fungible and non-fungible tokens under one smart contract. Its fungible token feature enables us to mint tokens similar to ERC20 tokens that are widely …
How to Verify Ownership Of a Blockchain Wallet
Verifying a person’s blockchain wallet typically involves verifying ownership or control of the wallet address associated with their identity. Message signing is probably the most common and robust method to check if someone actually owns a wallet address that they claimed they own. This method …