DUAL-CVM CONFIDENTIAL STACK

Confidential Oracle
for Neo N3

Serverless ingress, durable orchestration, isolated datafeeds, and attested request-response execution for Neo N3.

Launchpad ExplorerDocumentation
Oracle Fee
0.01
GAS per request
Runtime Split
2
Role-specialized CVMs
Feed Pairs
35+
Supported symbols

Execution Model

CONTROL PLANE OUTSIDE, CONFIDENTIAL EXECUTION INSIDE

Role-Split Confidential Runtimes

Oracle request/response execution and continuous datafeeds run on separate attested CVMs so private jobs and feed publication do not contend for the same lane.

Confidential Execution

Run JS/WASM workloads and private fetches inside the confidential runtime, then return signed result envelopes and optional attestation metadata.

Sealed Payload Transport

Secrets are sealed locally with X25519 + HKDF-SHA256 + AES-256-GCM before they ever leave the client boundary.

ISOLATED DATAFEED LANE

Isolated Datafeeds

Access synchronized price pairs stored directly on Neo N3 Mainnet. Feed publication runs on the dedicated DataFeed CVM, uses a global 1 USD = 1,000,000 integer scale, scans every 60 seconds, and only publishes when movement versus the current quantized on-chain value exceeds 0.1%.

Native Neo N3 C# contract integration
Role-split Oracle and DataFeed attestation anchors
Encrypted callbacks with replay and boundary protections
Explore Live Data
MorpheusFeed.csSYNC_OK
// Read verified 1e6-scaled USD price data on Neo N3
public static void Execute() {
    object[] record = (object[])Contract.Call(
        DataFeedHash,
        "getLatest",
        CallFlags.ReadOnly,
        "TWELVEDATA:NEO-USD"
    );
    
    BigInteger priceUnits = (BigInteger)record[2];
    BigInteger timestamp = (BigInteger)record[3];
    
    // 1.000000 USD == 1_000_000 units
    Require(priceUnits > 1_000_000, "Price too low");
}

Get Started

Choose your entry point based on what you want to build.

Privacy Oracle

Fetch outside data with encrypted secrets and sealed computation.

Start Oracle

Compute

Run custom JS/WASM logic inside TEE enclaves with verifiable results.

Learn Compute

NeoDID

Bind Web2 identities, resolve W3C DID documents, issue action tickets.

Try NeoDID

Initialize Connection

Build on a production design that separates ingress, durability, and confidential execution cleanly.

Open Explorer