ToroForge
Developer Hub
Build on Toronet with official SDKs, APIs, reference guides, and practical examples for real-world applications.
SDK Access
ToroSDK for JavaScript
NPM: torosdk • v4.2.0
npm install torosdkToronet for Flutter/Dart
Pub.dev: toronet • v1.1.2
flutter pub add toronetimport { Toronet } from '@toroforge/core'; // Initialize the Toronet client const client = new Toronet.Client({ network: 'mainnet', apiKey: process.env.TORO_KEY }); // Deploy a new smart contract async function deploy() { const node = await client.deployContract({ name: "EcoToken", logic: "protocol://living-asset-v1", initialSupply: 1000000n }); console.log(`Protocol live at: ${node.address}`); } deploy();
Step 01
Setup Environment
Install the official SDKs and configure your environment for Toronet development.
Step 02
Build Logic
Build contracts and integrations using Toronet SDKs and Ethereum-style smart contract syntax.
Step 03
Test Network
Test transactions, balances, and contract flows with example apps before release.
Step 04
Global Deploy
Deploy your app and monitor activity through Toronet tools and the explorer.
Core Knowledge
Core Concepts
Learn how wallets, balances, TNS, and transaction flows work across Toronet.
terminalSmart Contracts
Build with Ethereum-style smart contract syntax and Toronet integration examples.
apiAPI Reference
Reference guides for querying blockchain data and submitting transactions.
verified_userSecurity
Audit checklists and best practices for mission-critical apps.