
The first trustless trading agent is live on Solana!
BUILD WITH SMART PRIVACY
Better dApps require smarter privacy. Use cutting-edge tools from Oasis to add customizable confidentiality to any Web3 & AI application.
Start Building


Why Build on Oasis?

Sapphire is the first and only confidential SVM in production. Sapphire empowers developers to build SVM-based dApps using smart contracts with Smart Privacy – 100% confidential, 100% public, or anywhere in between.
Discover More



BRINGING
PRIVACY TO WEB3
Oasis is the the industry leading network for on-chain privacy and confidential computation. Confidential ParaTimes on Oasis enable developers to build privacy-enabled dApps that bring more real-world use cases to blockchain and AI.


HIGH
PERFORMANCE
The Oasis Network scales performance via the ParaTime layer to offer high throughput and low latency. The Oasis Sapphire ParaTime achieves 6s block times and instant finality; blocks are final once they are mined.

CUSTOMIZATION
Oasis' modular architecture enables multiple Parallel runtimes called Paratimes. Paratimes can be thought of as similar to rollups which coexist and process transactions in parallel with shared consensus. ParaTimes are entirely customizable, ensuring that the Oasis network will always be able to provide developers with the right tool for the job.


EASE OF
DEVELOPMENT
Oasis offers privacy enabled EVM (Sapphire), WASM based (Cipher) and standard EVM (Emerald) to accommodate a diverse array of the brightest and boldest blockchain developers and applications. Solidity developers can get started building privacy-enabled dApps immediately!


The building blocks of smart privacy

Better Privacy Won’t Build Itself
We empower developers, users and corporations to democratize the data economy with programmable confidentiality.
Our Vision
We are committed to building a better tomorrow with data ownership by right and privacy by design for everyone, everywhere.


Unlocking Smart Privacy Features on the Oasis Network

Featured Highlights
Oasis Sapphire

Private Storage
Encryption Precompiles
Free View Calls

Oasis Sapphire offers end-to-end encryption for executing confidential Smart Contracts which are able to hide specified parameters of the contract.Oasis Sapphire also simplifies the process of building dApps leveraging random number generation, dApps which sign or verify cryptographic signatures, and more.


Gaming
Account Abstraction
Onboarding and Social
DAOs & Secret Ballots
DID
NFTs
Gaming
DeFi
Decentralized AI
BUILD
Our Technology
Documentation
Token
$ORPHIQ
Participate
About
Blog
Vision
© 2025 Orphiq Protocol Foundation. All rights reserved
01 / Private Storage
02 / Encryption & Decryption
03 / Key Generation
04 / Signing
05 / OPL
contract MessageBox {
string private _message;
address public author; function setMessage(string calldata in_message) external {
_message = in_message;
author = msg.sender;
} function message() external view returns (string memory) {
if (msg.sender!=author) {
revert("not allowed");
}
return _message;
}
}
Explore Oasis Docs

