Test environment · Solana Devnet · No real-value assets · Not production · Internal validation is not an independent audit

Developer

A read-only reference for inspecting the Othvera deployment on Solana Devnet. Everything here reads public chain state; nothing here signs, mutates, or moves value.

Network
ClusterSolana Devnet
Default RPChttps://api.devnet.solana.com
OverrideNEXT_PUBLIC_SOLANA_RPC_URL

NEXT_PUBLIC_SOLANA_RPC_URL is a public, client-exposed value by design — it ships to every visitor’s browser. Never place a secret, private key, or authenticated endpoint token in a NEXT_PUBLIC_* variable.

Program IDs
ProgramProgram ID (full)Explorer
Squads v4 Multisig ProgramSQDS4ep65T869zMMBKyuUq6aD6EgTu8psMjkvj52pCfSQDS4…52pCf
Registry V3H5ecqbf7uzfSHniicbnwXGeKc7KKg1vm37V2bT61vAv9H5ecq…1vAv9
Verifier V3EcCXgYYBkhuhhyBmHhNgNRtMpdMQbTeZ5Cr7B7QgLaEbEcCXg…gLaEb
Binding V4Fn194un3WpdYinGAvuAa3JmwkdTm69X2sSHL3nMfLqWFn194…MfLqW
Vault Binding (successor)GbrYjGYJZExRGd6HKBTjm4hMC2EDg8eqgY3U9jb4REXjGbrYj…4REXj
Vault V46xi22q6bWHauV2SMsDaNGTG7NFwBuZBtA1Bt8h6Twynu6xi22…Twynu
Mock Rebalance Adapter TEST_ONLYEX7iMXY9fDFBNRj7JrhbmaZCN9BiNkH2mgzfKSXDDQAKEX7iM…DDQAK
Oracle Writer (test fixture) TEST_ONLYFcPUWe8mBiFCc72pUnxN8WuNrn7LEoL144x1x9trgpQ2FcPUW…rgpQ2
Account categories
CategoryDescription
RegistryConfigV3Registry V3 config account; governance authority = Squads 3-of-5 vault PDA.
Vault V4 stateCanonical index vault state: initialized flag, bound share mint, adapter, rebalance status.
Share mintSPL mint for vault shares; minted in-kind on deposit, burned on redemption.
CompositionEpoch composition account; hashes to the published composition hash.
BindingGeneration-bound methodology binding linking the verified epoch to the vault.
Verification semantics

PASS

The required fact was positively verified from public chain state.

FAIL

The required fact was positively contradicted by chain state.

UNKNOWN

Data was unavailable, the account was missing, the parser did not apply, or evidence was insufficient. Missing data is never turned into PASS.

Public status endpoint
JSON status/api/status

A read-only JSON summary of environment, program identity, release gates, findings, and the final closure hash. No secrets, no privileged calls, no mutation.

Read-only example
// Read-only: fetch a Vault V4 state account on Solana Devnet.
// NO keypair, NO signing, NO sendTransaction. Reads public chain state only.
import { Connection, PublicKey } from "@solana/web3.js";

const connection = new Connection("https://api.devnet.solana.com", "confirmed");

const vault = new PublicKey("8Ey7d25LunQx13oyG2RzMqv2dDdM8696jZWgympABuHG");
const info = await connection.getAccountInfo(vault);

if (!info) {
  console.log("Account not found on Solana Devnet.");
} else {
  console.log("owner  :", info.owner.toBase58());
  console.log("lamports:", info.lamports);
  console.log("dataLen:", info.data.length);
  // Decode against the published layout offsets; treat missing/short data as UNKNOWN,
  // never as PASS.
}
This reference publishes read-only access only. It intentionally omits every mutation, deposit, redemption, rebalance, and governance instruction. Do not construct or send transactions against this deployment from this site.