
Comprehensive documentation for writing, deploying, and managing smart contracts on the Minati blockchain.
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: MITpragma 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, providing secure, production-ready foundations that accelerate development and reduce risk.
View Full Docs
Standard fungible token with minting, burning, and transfer capabilities, designed for secure transactions, flexible supply management, and seamless integration across applications.

Non-fungible token standard for unique digital assets, enabling verifiable ownership, secure transfers, and seamless integration across marketplaces and applications.

Multi-token standard for efficient batch operations, allowing the creation and management of multiple asset types within a single contract for optimized performance and lower transaction costs.

Lock tokens and earn rewards over time through secure staking mechanisms designed to incentivize long-term participation and network growth.

DAO governance with proposal and voting mechanisms, enabling transparent decision-making, community participation, and decentralized control over protocol upgrades and policies.

Buy, sell, and auction NFTs with escrow support, ensuring secure transactions, trustless settlements, and seamless marketplace interactions.
Everything you need to build, deploy, and scale powerful applications with confidence and efficiency.
Browse Templates
Full Hardhat support with custom plugins tailored for the Minati blockchain, enabling seamless smart contract development, testing, deployment, and network integration.
View details
Blazing fast testing and deployment with Foundry, enabling efficient smart contract development, rapid iteration, and streamlined deployment workflows.
View details
Automatic source code verification on the block explorer, ensuring transparency, security, and instant public validation of your deployed smart contracts.
View details
Tools and guides to minimize gas costs, helping you optimize contract efficiency, reduce transaction fees, and improve overall performance on the network.
View detailsBuilt-in security features and best practices, designed to protect assets, prevent vulnerabilities, and ensure reliable, production-grade deployments.
Deploy your first contract in minutes with streamlined tooling. A developer-friendly workflow designed for fast and hassle-free launches.
View Stepsnpm install @minati/contracts
import @minati/contracts/...
npx hardhat deploy --network minati
Be part of Web3's next generation. Start your Minati journey today.