Build on Unipoly Chain
Everything you need to build GameFi experiences, dApps, and smart contracts on Unipoly Chain — powered by UniScript and UVM.
Get Started in 3 Steps
From zero to deployed smart contract in minutes.
Set Up Your Environment
Install the Unipoly SDK and configure your development environment.
npm install -g @unipoly/cli
# Initialize a new project
unipoly init my-dapp
cd my-dapp
Write Your Smart Contract
Create contracts using UniScript — our C#-inspired smart contract language.
contract GameReward {
event RewardClaimed(address player, uint256 amount);
mapping(address => uint256) public scores;
function recordScore(uint256 score) public {
scores[msg.sender] = score;
}
function claimReward() public {
uint256 reward = scores[msg.sender] * 10;
emit RewardClaimed(msg.sender, reward);
}
}
Deploy to Testnet
Compile and deploy your contract to the Unipoly testnet.
unipoly compile
# Deploy to testnet
unipoly deploy --network testnet
✓ Contract deployed at 0x7c5cfc...a3b2
✓ Verified on UNP Explorer
Developer Resources
UniScript Documentation
Comprehensive guide to the UniScript language, including syntax, types, and built-in functions.
Language GuideSDK Libraries
Pre-built libraries for common patterns: tokens, NFTs, GameFi logic, and DAO governance.
npm packagesTutorials
Step-by-step guides for building your first dApp, GameFi contract, and NFT marketplace.
Beginner FriendlyTestnet
Deploy and test your contracts on the live Unipoly testnet with free test UNP Coins.
Free Test TokensAI Contract Generator
Describe your smart contract in natural language and let AI write production-ready UniScript code for you.
Open AI AssistantAI Token Creator
Create custom tokens with AI — set supply, burning, staking, and governance rules through simple conversation.
Create TokenAI DEX Listing
Automatically list your AI-created token on the Unipoly DEX with optimized liquidity pools.
List on DEXAI Security Audit
Every AI-generated contract is automatically analyzed for vulnerabilities and security best practices.
Auto-AuditREST API
Full REST API for querying blocks, transactions, accounts, and contract states.
WebSocket Events
Real-time event streaming for blocks, transactions, and contract events.
Explorer API
Programmatic access to the UNP Chain Explorer for analytics and data queries.
Authentication
JWT-based authentication for secure API access and transaction signing.
Unipoly CLI
Command-line tool for project scaffolding, compilation, deployment, and testing.
Creator Studio (UCE)
No-code platform for building dApps and minting NFTs without writing code.
Debug Tools
Built-in contract debugger, transaction tracer, and gas analyzer for optimization.
Security Auditor
Automated smart contract security analysis to detect common vulnerabilities.
Discord Community
Join thousands of developers building on Unipoly Chain. Get help and share projects.
GitHub
Open-source examples, templates, and community-contributed libraries.
Hackathons
Regular hackathons with UNP prizes for innovative GameFi and creator dApps.
Grant Program
Apply for development grants to fund your Unipoly ecosystem project.
Start Building Today
Deploy your first smart contract in minutes — with code or with AI. Zero gas fees, free testnet tokens, and a thriving developer community.
