
Build, test, and deploy smart contracts using familiar tools and battle-tested templates. Full EVM compatibility with enhanced features.
Our contract library provides secure, audited, and gas-optimized implementations for the most common use cases.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "@minati/contracts/token/ERC20/ERC20.sol";
import "@minati/contracts/security/Pausable.sol";
import "@minati/contracts/access/Ownable.sol";
contract MyToken is ERC20, Pausable, Ownable {
constructor() ERC20("MyToken", "MTK") {
_mint(msg.sender, 1000000 * 10 ** decimals());
}
function mint(address to, uint256 amount) public onlyOwner {
_mint(to, amount);
}
function pause() public onlyOwner {
_pause();
}
function _beforeTokenTransfer(
address from, address to, uint256 amount
) internal whenNotPaused override {
super._beforeTokenTransfer(from, to, amount);
}
}Pre-built, audited templates for common use cases
Standard fungible token with minting, burning, and transfer capabilities
Non-fungible token standard for unique digital assets
Multi-token standard for efficient batch operations
Lock tokens and earn rewards over time
DAO governance with proposal and voting mechanisms
Buy, sell, and auction NFTs with escrow support
Everything you need to build and deploy
Full Hardhat support with custom plugins for Minati blockchain
Blazing fast testing and deployment with Foundry
Automatic source code verification on block explorer
Tools and guides to minimize gas costs
Built-in security features and best practices
Built-in protection against reentrancy attacks
Role-based permissions for contract functions
Emergency stop mechanism for critical situations
Proxy patterns for safe contract upgrades
Prevent spam and abuse with rate limits
Clean code patterns ready for security audits
Deploy your first contract in minutes
npm install @minati/contractsimport "@minati/contracts/..."npx hardhat deploy --network minatiGet started with our contract templates and deploy your first smart contract today.
npm install @minati/contracts