Vol. 1 — Est. 2026Galileo Testnet Edition

PARELLAX

Verifiable Orchestration Layer for Agentic Banking

Breaking

BANKING
ON YOUR
WORD.

Parellax bridges the gap between natural language and cryptographic trust. Speak your intent — we handle the rest. Every transaction is evaluated inside a Trusted Execution Environment and settled on-chain with an ECDSA-gated vault.

Built on the 0G ecosystem's three primitives: KV Storage for user preferences and audit trails, TEE Compute for sealed LLM inference, and Chain for immutable settlement. No intermediaries. No trust assumptions.

0G StorageKV Audit Logs|
0G ComputeTEE-Sealed LLM|
0G ChainECDSA Vault|
Qwen 2.5 7BTEE Inference|
Chain ID 16602Galileo Testnet|
Parellaxv1.0|
0G StorageKV Audit Logs|
0G ComputeTEE-Sealed LLM|
0G ChainECDSA Vault|
Qwen 2.5 7BTEE Inference|
Chain ID 16602Galileo Testnet|
Parellaxv1.0|
Open Source

USE THE PRIMITIVES

The storage and compute layers are published as standalone npm packages. Drop them into any Node.js or Next.js project that needs 0G KV or TEE inference — no Parellax infrastructure required.

npm · v0.1.1PRIVATE_KEY required

Decentralized KV

@daiwikdomain/parellax-storage

Drop-in wrapper for 0G KV Storage. Set per-wallet spending limits and maintain append-only audit logs stored on the 0G network — not in your database. No operator can modify entries after they are written.

npm install @daiwikdomain/parellax-storage

AuditEntry type

interface AuditEntry {
ts : number
intent : string
decision : 'approved' | 'rejected'
verificationId: string
txHash ?: string
}

Spending limits

import { setSpendingLimit, getSpendingLimit }
from '@daiwikdomain/parellax-storage'
// write — returns txHash
const tx = await setSpendingLimit(
'0xWallet',
parseEther('1.0')
)
// read — returns bigint | null
const limit = await getSpendingLimit('0xWallet')

Audit log

import { appendAuditLog, getAuditLog }
from '@daiwikdomain/parellax-storage'
// append — fire and forget safe
await appendAuditLog('0xWallet', {
ts: Date.now(), intent, decision: 'approved',
verificationId, txHash
})
// read full history
const log = await getAuditLog('0xWallet')
npm · v0.1.1OG_COMPUTE_KEY required

TEE Inference

@daiwikdomain/parellax-compute

Single-function wrapper for 0G Compute TEE. Pass a natural-language intent and financial context — get back a structured approval decision with a cryptographic verification ID and a teeVerified flag confirming the inference ran inside a sealed enclave.

npm install @daiwikdomain/parellax-compute

Return type

interface ApprovalDecision {
approved : boolean
reason : string
model : string
verificationId : string // TEE receipt
teeVerified : boolean // sealed enclave
}

Input type

interface TransactionContext {
walletAddr : string
amountWei : bigint
recipient : string
spendingLimitWei : bigint
currentBalanceWei: bigint
}

Usage

import { evaluateTransaction }
from '@daiwikdomain/parellax-compute'
const decision = await evaluateTransaction(
'pay the nanny 0.1 OG',
{ walletAddr, amountWei,
recipient, spendingLimitWei,
currentBalanceWei }
)
decision.approved // true
decision.teeVerified // true
Analysis

HOW IT WORKS

01INTENT

SPEAK

Express your intent in plain language. 'Pay the nanny $200 every Friday.' No form fields. No transaction builders. Just intent.

02COMPUTE

EVALUATE

Parellax routes your intent to a TEE-sealed LLM on 0G Compute. It checks spending limits, validates the request, and signs an approval — all inside a trusted enclave.

03CHAIN

EXECUTE

The approved signature unlocks your ECDSA-gated vault on the 0G blockchain. Funds move only when cryptographically verified. Every action is audited to 0G KV storage.

Infrastructure

THE 0G STACK

Fig. 1.1
0G STORAGE

Every Action, Immutably Logged

  • KV store for spending limits
  • Append-only audit log
  • User preferences on-chain
  • Stream ID: parellax.v1
Fig. 1.2
0G COMPUTE

Intelligence Inside a Vault

  • TEE-sealed inference
  • Qwen 2.5 7B model
  • Approval decisions are signed
  • Zero leakage by design
Fig. 1.3
0G CHAIN

Funds Move Only When Verified

  • ECDSA-gated vault contract
  • Galileo Testnet (ID: 16602)
  • No signature, no transfer
  • Full on-chain auditability
Deployed

LIVE ON TESTNET

Smart Contract
ParellaxVault0x84e57567758B1143BD285eED2cbD574187a1D710
verifiedBrain0x445bf5fe58f2Fe5009eD79cFB1005703D68cbF85
Network0G Galileo Testnet — Chain ID 16602
RPChttps://evmrpc-testnet.0g.ai
Solidity0.8.28 · cancun · viaIR
0G Infrastructure
Storage Indexerindexer-storage-testnet-turbo.0g.ai
KV Streamethers.id('parellax.v1')
Flow Contract0x22E03a6A89B950F1c82ec5e74F8eCa321a105296
Compute Routerrouter-api-testnet.integratenetwork.work/v1
TEE Modelqwen/qwen-2.5-7b-instruct · verify_tee: true
✧ ✧ ✧
Ready

YOUR INTENT.
Verified on-chain.

Connect to the Galileo Testnet and execute your first agentic transaction in under 30 seconds.

Launch Parellax