Skip to content

SAGE Dev DocsStart with SAGE C4

Developer docs for Star Atlas SAGE C4 on the z.ink testnet, shaped for first integrations, debugging, and agent-friendly lookup.

Star Atlas Build

Start here

A practical entry point for SAGE C4 developers

Use this site to get from zero to useful quickly: connect to the right cluster, understand the core accounts, inspect generated client calls, and review transaction effects before you ask a wallet to sign anything.

Networkz.ink testnetSAGE C4 PTR runs on the z.ink testnet, with separate RPC, WebSocket, and explorer endpoints.
Core pathConnect, Read, ReviewMost integrations start by reading identity, profiles, fleets, and world state before composing writes.
InputsGenerated clientsExamples use TypeScript clients and concrete account names so code and docs stay aligned.
AudienceDevelopers and agentsWritten for humans taking first steps and for tools that need clean, searchable implementation notes.

Pick a path

Start from the task you need to complete

For first steps

Overview

Learn the major programs, account relationships, and the order most integrations should understand them.

For runtime

Connection Setup

Copy the right RPC, WebSocket, explorer, and commitment settings for the z.ink testnet environment.

For safe writes

Review and Diffs

How to summarize signers, writable accounts, simulations, and state changes before a wallet prompt.

Reference habits

What this documentation optimizes for

Quick start

ts
export const sagePtrCluster = {
	http: 'https://testnet-rpc.z.ink',
	ws: 'wss://testnet-rpc.z.ink',
	explorer: 'https://explorer.z.ink'
} as const;

Community Created

This documentation is maintained by the community and tracks the live SAGE C4 PTR on the z.ink testnet as closely as possible.