Platform

Overview

How It Works

Beneficiary Identity

Policy Corridors

Deterministic Finality

Architecture

Security Model

Governance

Integration

Solutions

Corridors Overview

Institutional Overview

Pricing

All Scenarios

Humanitarian Impact Fund

Assurance

Technical Assurance

Verify Receipt

Receipt Example

Developers

Documentation

APIs & Bridges

Architecture Docs

Glossary

BID API

Company

About

Team

Partners

Roadmap

Investors

Contact

Blog

All Documentation

Schedule Consultation
Developer Environment

Sandbox Environment

Full-featured test environment with pre-configured compliance corridors, sample data, and simulated validator consensus. Build and test settlement workflows without touching production.

TestNet jil-testnet-1
3-of-5 Validator Quorum
<2s Settlement Finality
48h Credential Turnaround
What's Included

The sandbox mirrors production infrastructure.

Test real settlement flows end to end. Swap the base URL when you go live - everything else stays the same.

🔧

Settlement API (TestNet)

Full REST API with auth, batching, idempotency, and receipt generation. Endpoints match production - swap the base URL when you go live.

🔒

Compliance Corridors

Pre-configured policy corridors for US-EU, US-SG, and intra-EU settlement. ATCE sanctions screening runs against test lists so you can validate full flows.

📊

Simulated Consensus

3-of-5 validator quorum on TestNet. Consensus settles in under 2 seconds. Finality receipts are generated with real Ed25519 signatures.

📝

Sample Data

Pre-loaded counterparties, test LEIs, sample IBAN/BBAN accounts, and token balances. Run settlement scenarios immediately without manual setup.

🔍

Block Explorer

TestNet block explorer with transaction search, state proofs, and receipt verification. Inspect every step of the settlement lifecycle.

📦

Evidence Bundles

Cryptographic finality receipts generated on every sandbox settlement. Download JSON bundles with Merkle proofs, validator signatures, and compliance attestations.

Getting Started

Four steps from request to first settlement.

1

Request Credentials

Submit a sandbox request. You receive an API key pair (Ed25519) and a TestNet participant ID within one business day.

2

Configure Environment

Point your integration at the sandbox base URL. Set your API key in the Authorization header. The SDK handles auth, retry, and receipt parsing.

3

Submit a Settlement

Create a settlement instruction with originator and beneficiary details. The sandbox processes it through the full pipeline - compliance, binding, consensus, finality.

4

Verify the Receipt

Download the finality receipt and verify Ed25519 signatures. Includes settlement hash, validator attestations, compliance result, and binding confirmation.

Environment Details

Sandbox vs. Production

The sandbox mirrors production in every way that matters. Only the data and rate limits differ.

ParameterSandbox (TestNet)Production (MainNet)
Network IDjil-testnet-1jil-mainnet-1
Validator Quorum3-of-514-of-20
Settlement FinalityUnder 2 secondsUnder 2 seconds
ComplianceTest sanctions listLive ATCE screening
BEC PreventionFull beneficiary bindingFull beneficiary binding
Evidence BundlesReal Ed25519 signaturesReal Ed25519 signatures
Rate Limits100 requests/minutePer subscription tier
Data Retention30 daysPer compliance policy
Quick Start

Submit your first settlement in a few lines of code.

# Submit a settlement instruction
curl -X POST https://sandbox.jilsovereign.com/v1/settlements \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "instruction_id": "test-001",
    "type": "fiat_settlement",
    "amount": "50000.00",
    "currency": "USD",
    "originator": {
      "legal_name": "Test Corp",
      "lei": "529900TEST000000001",
      "account": "US33TEST0001234567890",
      "country": "US"
    },
    "beneficiary": {
      "legal_name": "Acme GmbH",
      "lei": "529900TEST000000002",
      "account": "DE89TEST0001234567890",
      "country": "DE"
    },
    "beneficiary_binding": {
      "binding_hash": "a1b2c3...",
      "binding_signature": "base64..."
    }
  }'
Developer Environment

Ready to build?

Request sandbox credentials and start testing settlement flows today. From first API call to production settlement in 30 days.

or email contact@jilsovereign.com