Developer Sandbox (Testnet)
The Developer Sandbox is a safe test environment where developers can explore Arc402’s adaptive intelligence without affecting the main network. It allows you to experiment with signal submissions, observe AI responses, and test behavior under different scenarios before deploying on mainnet.
Developers can simulate user activity, test automated responses, and fine-tune workflows, giving confidence that applications will perform as expected once live. The sandbox mirrors the main network’s functionality, so experiments are realistic and meaningful.
import { Arc402 } from "arc402-sdk";
const arc = new Arc402({ network: "testnet", apiKey: process.env.ARC402_API_KEY });
arc.submitSignal({
type: "simulation",
payload: { action: "test_trade", amount: 500 },
encrypted: true
});
const response = await arc.adaptiveResponse({ userId: "0x1234" });
console.log("Testnet response:", response);
This demonstrates how developers can send test signals and retrieve AI-driven responses in a safe environment, enabling experimentation and optimization before mainnet deployment.
Last updated