v1.0.0-beta

Protocol
Architecture

A modular system of smart contracts connecting on-chain escrow with off-chain verification oracles. Trustless execution for milestone-based agreements.

Tokenization
SAFE / RevShare
Oracles
Chainlink / API3
Security
Non-Custodial
Privacy
ZKP (Roadmap)
Chain Agnostic Protocol
Ethereum Polygon Solana TON

Core Modules

EscrowManager.sol

Handles fund custody and conditional release logic. Designed for SAFE and Profit-Sharing Agreement tokenization. Uses patterns similar to ERC-3643 for compliant transfer restrictions (whitelisting).

  • • deposit(amount)
  • • release(milestoneId)
  • • checkCompliance(identity)

OracleAdapter.sol

Interface for external data feeds. Connects to Chainlink Functions or internal API signers to verify off-chain events (GitHub commits, Stripe webhooks).

  • • requestVerification(jobId)
  • • fulfill(requestId, data)

Arbiter.sol

Multisig-like logic allowing a designated 3rd party (human or AI) to resolve deadlocks. Can freeze funds or force-payout/refund based on evidence.

  • • raiseDispute()
  • • rule(decision)
On Our Roadmap

Zero-Knowledge Verification

In future updates, we plan to implement zk-SNARKs (Zero-Knowledge Succinct Non-Interactive Arguments of Knowledge).

This will allow founders to prove they hit a milestone (e.g., "Revenue > $10k") without revealing the exact data or customer list on-chain.

1
Prover generates proof locally (off-chain)
2
Proof submitted to contract
3
Contract verifies proof & unlocks funds
circuit.circom
template MilestoneCheck() {
    signal input revenue;
    signal input threshold;
    signal output verified;

    // Private Input: revenue
    // Public Input: threshold

    component gt = GreaterThan(64);
    gt.in[0] <== revenue;
    gt.in[1] <== threshold;

    verified <== gt.out;
}
// Result: Verified (True) without revealing 'revenue'

Protocol Fees

Custom
Deployment Gas + Fee

Covers contract factory execution and initial setup. Paid in Native Token (ETH/MATIC/etc) or Stablecoin. Contact us for pricing.

5%
Success Fee

Smart contract automatically deducts 5% from the first verified milestone payout only.

* Network gas fees for oracle updates are paid by the transaction initiator (sender).

Start Building Trust

Ready to deploy? Use our no-code wizard to generate and deploy your Tokenized Promise.

Athanor