ToroForge
Developer Hub

Build on Toronet with official SDKs, APIs, reference guides, and practical examples for real-world applications.

SDK Access

javascript

ToroSDK for JavaScript

NPM: torosdk • v4.2.0

npm install torosdk
BrowserNode.js
flutter_dash

Toronet for Flutter/Dart

Pub.dev: toronet • v1.1.2

flutter pub add toronet
iOSAndroidWeb
contract_deploy.ts
import { 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

Ready to Build on Toronet

Start with the Quickstart Guide

Open Quickstart