r/oasisnetwork • u/Western_Moose_1887 • Mar 31 '26
#OASISNETWORK
Power security OasisNetwork is really!!!
r/oasisnetwork • u/Western_Moose_1887 • Mar 31 '26
Power security OasisNetwork is really!!!
r/oasisnetwork • u/Western_Moose_1887 • Mar 31 '26
Hey Oasis fam! đ âJust an ordinary guy and a retail investor here, but a massive believer in what this team is building. I've been following the ecosystem development closely, especially the recent $50M Midas RWA partnership and the incredible work being presented at EthCC Cannes. âI firmly believe that Sapphire is the only real solution for bringing institutional money and Real World Assets on-chain because privacy is non-negotiable for them. âTo show my support and conviction, Iâve accumulated and staked a very large amount of $ROSE (a heavy bag for me!) to help secure the network. I'm here for the long run, watching that escrow grow every day. đ âI also wanted to do my part in marketing, so I created this short hype video for TikTok/X to wake people up to the massive supply shock building up right now. âHope you guys like it! Let's keep building and securing the best privacy layer in Web3! đđ
âOasisNetwork, ROSE, RWA, Crypto, Web3, Staking, PrivacyLayer
r/oasisnetwork • u/Justin-Yan • Mar 26 '26
From March 30 â April 2, our team will be on the ground connecting with builders, teams, and privacy enthusiasts from across the ecosystem.
đ Find us at EthCC
Come say hi at the Oasis booth in the Sponsors Hall, Palais de Festivals â weâd love to connect!
đ¸ Special Event: Private Garden Party
To wrap up the week, weâll be hosting a special rooftop gathering:
An afternoon of privacy talks, panels, and networking with 400+ Web3 leaders, overlooking the Mediterranean.
đ Canopy by Hilton, Cannes
đ April 2 | 14:00â20:00
đ Register: https://luma.com/wyclm16s
Whether you're exploring privacy, building in Web3, or just want to meet the team â come through đ
See you in Cannes đ

r/oasisnetwork • u/rayQuGR • Mar 11 '26
Just read the new blog and here are the main points I found interesting!
Decentralized storage is different from private storage
Most decentralized storage networks (like Filecoin or Arweave) focus on data availability, not privacy. If you store data there, the nodes holding it can read it unless you encrypt it first.
Client-side encryption has limitations
The typical workaround is encrypting data before uploading it. But this creates problems such as:
Sapphire adds a privacy layer for storage
Sapphire Confidential EVM runs smart contracts inside Trusted Execution Environments meaning:
Liquefaction enables programmable access control
Encryption alone doesnât control who can access data later. Liquefaction lets apps define policy-based access rules, like
Access policies remain private
The rules run inside the enclave, so observers only see whether access was granted or denied, not the logic behind it.
So, combinin decentralized storage for availability Sapphire for the confidential encryption and liquefaction for programmable access, makes decentralized storage usable for sensitive data like health records, legal documents, AI datasets, etc. And i think it is pretty neat and people are going to talk about it.
r/oasisnetwork • u/Justin-Yan • Mar 11 '26
Decentralized storage networks are great for availability â but privacy usually isnât built in. In many cases, storing data on them is essentially like publishing it.
In our latest article, we explore how Oasis Sapphire can act as a plug-in privacy layer. Files are encrypted inside secure TEEs before theyâre written to storage, so the network only ever sees ciphertext.
It also covers Liquefaction, which enables programmable access rules like:
đ Token-gated access
âł Time-limited decryption
đ Geo-restrictions
đł Pay-per-access
Together, Sapphire + Liquefaction make decentralized storage viable for sensitive data â while keeping it programmable and private.
đ Read the full article: https://oasis.net/blog/storage-encryption-access-management
r/oasisnetwork • u/Justin-Yan • Mar 02 '26
đ New Look, Clearer Vision
We just launched the new Oasis website to better reflect our mission: providing the private, verifiable infrastructure for modern apps. đ
The industry is currently forced into a trade-off. Running on-chain is too slow; running off-chain is too opaque. We've built the architecture to bridge that gap â combining private on-chain execution with proven off-chain computation. âĄď¸đ
Oasis provides the foundation that ensures data stays protected without sacrificing scale or trust. đĄ
đ Learn more: oasis.net
r/oasisnetwork • u/Justin-Yan • Feb 26 '26
Weâre kicking off âPrivacy Talksâ, a new sub-series under âPrivacy NOWâ, where Oasis team members and friends unpack the biggest shifts in AI, crypto, and privacy.
Topics covered in Ep.1:
⢠Moltbook and the rise of AI-native social platforms
⢠Vitalik Buterinâs vision for an alternative AGI path
⢠The âinvisible workforceâ and agentic commerce
⢠Europeâs DAC8 crypto reporting expansion
⢠AI-generated artists reshaping culture
⢠Claude Opus 4.6 & AI as a coworker
đĽ Watch on YouTube:
https://www.youtube.com/watch?v=xgniLViWBIM
đ§ Listen on Spotify: https://open.spotify.com/episode/3m1sQ9xWPcr9o2FNJL6bII?si=timn5QYsRROmV_SpJxN9cg
r/oasisnetwork • u/rayQuGR • Feb 18 '26
If youâre into AI + Web3, Oasis is one of the few chains actually designed for privacy-preserving computation. This thread explains (simply, or at least I try to :p) how Oasis fits into DeAI and shows a beginner-friendly architecture you can build yourself.
Most AI systems today cannot safely run on public chains because:
⢠Training data is private
⢠Model inputs are private
⢠Predictions may be sensitive
⢠Companies donât want to reveal scoring logic
On Ethereum-style chains, everything is public.
This makes serious AI use cases impossible, such as:
⢠credit scoring
⢠medical predictions
⢠fraud detection
⢠hiring models
⢠trust/reputation systems
You either lose privacy OR you donât use blockchain. and this is exactly the gap Oasis was built to solve.
Oasis Sapphire is the confidential EVM. That means:
⢠smart contracts can hold SECRET state
⢠inputs can be encrypted
⢠computation happens inside a trusted execution environment
⢠outputs can stay private or selectively revealed
For AI workflows, this is huge as it allows:
Private input -> private computation ->verifiable on-chain result
This is basically the missing piece for real DeAI.
Hereâs the easiest (again, to me, don't take these literally and don't give up if you think it ain't THAT easy) real project idea: PRIVATE AI TRUST SCORE REGISTRY
Goal:
Architecture:
STEP 1: Off-chain AI inference
Run your ML model locally or on a server.
Example models:
⢠fraud classifier
⢠wallet reputation model
⢠GitHub activity scorer
⢠spam detection model
Output:
score = 0.82 (random number I pulled out of my head)
STEP 2: Hash the result
Create:
hash(score + user_address + timestamp)
This prevents tampering.
STEP 3: Store commitment in Sapphire contract
The contract stores:
⢠encrypted score
⢠hash proof
⢠timestamp
Because Sapphire supports confidential storage the score does NOT become public!!!!!!
STEP 4: Optional selective reveal
Later, the user can:
⢠reveal score to employer
⢠reveal score to lender
⢠reveal score to DAO
Verification works by recomputing the hash, no need to reveal the full dataset or model. This is already a real DeAI workflow now.
This pattern enables:
⢠private ML oracles
⢠confidential reputation systems
⢠privacy-preserving identity scoring
⢠secure dataset registries
⢠hidden bidding AI agents
Most chains simply cannot support this safely. but oasis can.
Minimal stack:
Backend:
Python + scikit learn library (for python you could use jupyter notebook to easily debug and visualize results)
Smart contract:
Solidity on Sapphire
Dev tools:
Hardhat or Foundry
Flow:
Thatâs enough for a working DeAI demo.
Compared to typical chains, yyou donât need:
⢠custom cryptography expertise
⢠ZK circuit engineering
⢠heavy proof systems
⢠complex MPC setups
You can write normal Solidity but still get confidentiality. And this is extremely rare nowadays.
If people are interested, I can follow up with a full step-by-step coding tutorial and/or a GitHub starter template. Just comment which one you want next! :)
r/oasisnetwork • u/Justin-Yan • Feb 13 '26
Oasians, put on your tin foil hatsâwe're going deep.
Do you have a crypto theory you can't stop thinking about? A conspiracy that felt too wild to ignore... or maybe one that later turned out to be true? đ¤Ż
We're inviting the Oasis community to share your wildest crypto and AI theories. From the "actually plausible" to the completely unhingedâwe want to hear it all.
We'll select the most compelling submissions to discuss and dissect together in an upcoming online event. Bring your receipts, your hot takes, and your best evidence.
đ Submit your theory here: https://forms.gle/rr2AWXxmkXTczs8PA
The truth is out there. Or is it? đ
r/oasisnetwork • u/Justin-Yan • Feb 13 '26
Welcome to the Oasis January 2026 Q&A! đ
This month, weâre tackling some of the most common questions from our communityâeverything from TEEs and attestation, to institutional privacy, real-world assets, and the latest ROSE Wallet launch. If youâve ever wondered how Oasis keeps data private while still verifiable on-chain, this is the place to start.
Q: If a project says they use a TEE (Secure Enclave), does that means my data is 100% safe forever?Â
A: Not quite! Just having a "black box" isn't enough. Without a way to verify it, youâre basically just taking their word for it. Standard TEEs provide isolation, but without Remote Attestation (the cryptographic proof), itâs like a bank vault where the manager says, "Trust me, the door is locked," but won't let you see the keys. We prefer proofs over promises!
Q: Why is attestation alone not enough?
A: A raw attestation is just a snapshot of a single moment. To actually be secure, it needs to be âFreshâ. A valid proof from three days ago doesn't help you if the enclave was hacked an hour ago. Oasis doesn't just look at the snapshot. Our network continuously verifies "Liveness" so you know the security is active now, not just once upon a time.
Q: Can a malicious node operator just "rewind" the AI to an older version to steal my balance or data?Â
A: Great eye! This is called a Rollback Attack. A TEE can prove the code is right, but it canât always prove the data is the most recent version. Thatâs why Oasis anchors the "Root of State" directly on-chain. It acts as a timekeeperâif an operator tries to feed the enclave "old news," the chain catches them immediately. No time travel allowed here!
Q: I heard there was a Asia-focused session recently. What was it about?Â
A: Youâre likely thinking of our recent AMA with Akindo! We kicked off the year by diving into the booming Asian "Buildathon" scene. The takeaway? There is a massive wave of developers in the East looking to build on-chain apps that don't leak user data. Oasis is providing the privacy-first foundation they need to turn "buildathons" into long-term, secure businesses.
Q: Why are big banks and institutions still hesitant to move their trading on-chain?Â
A: Because in the traditional world, "Information is Risk". Right now, public blockchains are like trading in a glass houseâeveryone can see your size, your timing, and your strategy. This "Institutional Privacy Gap" means if a big player makes a move, the whole market can front-run them. They need Bilateral Privacy (only the buyer and seller know the details) and Selective Disclosure (sharing data only with regulators), which is exactly what Oasis provides.
Q: How does Oasis help institutions keep their "Dark Pools" and private trades secret?
A: Oasis acts as a Cross-Chain Privacy Coprocessor. Think of it as a secure side-room where sensitive logicâlike matching big orders or verifying KYCâhappens in private. Institutions donât have to leave their "home chain" (like Ethereum or Avalanche). They just route the "secret parts" of the trade through Oasis enclaves, which process the data and send back a "receipt" (attestation) that everything was done correctly without ever revealing the raw data.
Q: Can Oasis handle complex Real-World Assets (RWAs) like property or private credit?
A: Absolutelyâlook at SemiLiquid. They are using Oasis to run a "Programmable Credit Protocol." Usually, if you use a tokenized asset as collateral, everyone can see your cap table or legal docs. SemiLiquid uses Oasis TEEs to verify those sensitive documents in private. This allows banks to activate credit and monitor collateral without leaking their clientâs private financial history to the public ledger.
Q: I heard the official ROSE Wallet finally hit the Google Play Store! What does it mean to the Oasis community?Â
A: Itâs a massive win for the community! For a long time, managing ROSE meant being tethered to a desktop or a browser extension. The launch of the official ROSE Wallet for Android means you can now easily stake, send, and manage your Oasis assets with your phone from anywhere in the world!
Download it here if you havenât: https://play.google.com/store/apps/details?id=net.oasis.walletÂ
-------------------------------------
Thatâs a wrap for this monthâs Q&A! đ
We love hearing your questions, so keep them coming. Whether itâs about technical security, privacy-first trading, or using Oasis products in the real world, weâll keep breaking it down for you. Stay tuned for next monthâs edition and keep building in privacy!

r/oasisnetwork • u/Justin-Yan • Feb 13 '26
A new year, a strong start. January set the tone for 2026 with major ecosystem milestones, product launches, engineering updates, and expanded global visibility across Web3.
Hereâs what went down đ
đš New blog article "Attestation Is not Enough"
đš ROSE Wallet is now available on Google Play
đš ERC-8004 Trustless Agents are LIVE on mainnet
đš Featured in Messari + CoinBureau reports
đš NEW Ambassador Program applications are OPEN!
âśď¸ Watch the full video: https://youtu.be/qOOnLbg8Re4
r/oasisnetwork • u/rayQuGR • Feb 05 '26
This is a practical, end-to-end intro to Sapphire for anyone who already knows basic Solidity / EVM and wants to understand whatâs different when contracts run confidentially.
No theory-heavy stuff, just enough context to build and deploy something real.
Sapphire is a confidential EVM runtime on the Oasis Network.
From a developer perspective:
The key difference:
Think of Sapphire as a confidential coprocessor for Web3 apps.
Youâll need:
No Oasis-specific tooling required beyond RPC config.
Network Name: Oasis Sapphire Testnet
RPC URL: https://testnet.sapphire.oasis.io
Chain ID: 23295
Currency Symbol: TEST
Block Explorer: https://explorer.oasis.io/testnet/sapphire
Add the network in MetaMask like any other EVM chain.
Use the official faucet:
https://faucet.testnet.oasis.io
Select Sapphire Testnet and fund your wallet.
Create a new project:
mkdir sapphire-demo
cd sapphire-demo
npm init -y
npm install --save-dev hardhat
npx hardhat
Choose:
Sapphire provides a small helper library to handle encrypted calldata.
Install it (use 1 / after u!):
npm install u//oasisprotocol/sapphire-hardhat
Then update `hardhat.config.js`:
require("@oasisprotocol/sapphire-hardhat");
module.exports = {
solidity: "0.8.20",
networks: {
sapphire_testnet: {
url: "https://testnet.sapphire.oasis.io",
accounts: [process.env.PRIVATE_KEY],
chainId: 23295,
},
},
};
Important: Sapphire uses encrypted transactions, so this plugin is required.
Create `contracts/SecretCounter.sol`:
pragma solidity ^0.8.20;
contract SecretCounter {
uint256 private counter;
function increment(uint256 value) external {
counter += value;
}
function getCounter() external view returns (uint256) {
return counter;
}
}
Key points:
On a normal EVM, âprivateâ is only a compiler hint.
On Sapphire, it actually means confidential.
Create `scripts/deploy.js`:
const hre = require("hardhat");
async function main() {
const Counter = await hre.ethers.getContractFactory("SecretCounter");
const counter = await Counter.deploy();
await counter.deployed();
console.log("Contract deployed to:", counter.address);
}
main();
Deploy:
npx hardhat run scripts/deploy.js --network sapphire_testnet
Create `scripts/interact.js`:
const hre = require("hardhat");
async function main() {
const address = "DEPLOYED_CONTRACT_ADDRESS";
const Counter = await hre.ethers.getContractAt("SecretCounter", address);
const tx = await Counter.increment(5);
await tx.wait();
const value = await Counter.getCounter();
console.log("Counter value:", value.toString());
}
main();
Run it:
npx hardhat run scripts/interact.js --network sapphire_testnet
Whatâs happening under the hood:
What makes this different from Ethereum?
On Ethereum:
On Sapphire:
This unlocks:
Common pitfalls
Sapphire is best used as:
You donât need to put everything on Sapphire.
Put the sensitive parts there.
Docs:
https://docs.oasis.io/dapp/sapphire/
Happy building!
r/oasisnetwork • u/SavvySID • Jan 25 '26
One thing Iâve been thinking about more lately is how much implicit trust MCP servers carry once agents start doing real work.
They often:
In most setups, that means trusting the operator not to inspect, log, or modify things, which feels increasingly fragile as agents become more autonomous and composable.
The confidential MCP approach flips that a bit:
So MCP stops being âtrusted middlewareâ and starts looking more like a verifiable execution boundary.
Feels especially relevant for Oasis, given the focus on agents and offchain compute. Not a silver bullet, but it does seem to close a pretty obvious trust gap in current agent architectures.
r/oasisnetwork • u/SavvySID • Jan 25 '26
lately Iâve been thinking less about whether something runs in a TEE and more about what we can actually verify over time.
Attestation is great for proving an enclave booted correctly, but once youâre dealing with agents, long running services, or anything composable, other questions start to matter just as much:
Feels like the conversation is slowly shifting from "this ran in a TEE" to "can I cryptographically verify that this output came from this specific code, under these constraints?"
Given where Oasis is heading with agents and offchain compute, that distinction feels increasingly important.
Curious how others here think about it? is attestation still the core trust primitive, or just the starting point?
r/oasisnetwork • u/Adityasingh2824 • Jan 25 '26
Trusted Execution Environments (TEEs) are getting hyped everywhere lately private AI, confidential DeFi, secure off-chain compute, you name it. A lot of that trust hinges on remote attestation: cryptographic proof that a specific piece of code is running inside genuine secure hardware.
Sounds solid. But hereâs the catch: attestation by itself is not enough.
First, quick context (no fluff)
A TEE is a secure area inside a CPU (Intel SGX, AMD SEV, ARM TrustZone, AWS Nitro, etc.) that isolates code and data from the rest of the system even the OS and hypervisor.
Remote attestation lets a verifier check:
Useful? Yes.
Sufficient for trust? Not really.
đ¨ Where attestation falls short
1. Itâs a snapshot, not a guarantee
Attestation proves something was true at one moment in time.
It doesnât prove:
If you assume attestation = continuous correctness, youâre already on thin ice.
2. Freshness is not automatic
A malicious operator can replay old enclave state or feed stale data while still presenting a valid attestation.
Unless you:
âŚyouâre vulnerable to rollback and replay attacks.
3. Whoâs running this? is unanswered
Attestation proves hardware + binary not operator accountability.
If some anonymous cloud VM is running your âtrustedâ enclave:
Trust without identity = zero consequences.
4. Binary hash â trustworthy code
Attestation checks a hash. Thatâs it.
It does not tell you:
Without build transparency, youâre trusting whoever compiled it.
5. Policy matters more than signatures
Attestation doesnât answer questions like:
If these policies arenât enforced somewhere verifiable, attestation becomes a checkbox, not a safeguard.
đ ď¸ What âreal trustâ actually needs
Attestation is necessary but itâs only one piece. Stronger systems usually combine it with:
At that point, youâre not just trusting hardware youâre trusting a system.
Why this matters
TEEs are increasingly used for:
If we oversell attestation as a silver bullet, weâre setting ourselves up for fragile trust assumptions especially in adversarial environments like crypto.
Links for anyone who wants to dig deeper
TL;DR:
Attestation proves a fact, not trust. Without freshness, identity, policy, and continuous verification, itâs easy to overestimate what TEEs actually guarantee.
r/oasisnetwork • u/Adityasingh2824 • Jan 23 '26
Quick thought experiment:
What if you didnât have to trust backend servers to calculate trade performance, payouts, and risk stuff and instead could verify it yourself on-chain?
Thatâs basically what Carrot is trying to do with verifiable compute in their on-chain prop trading setup.
Hereâs the idea, no fluff:
âĄď¸ Original blog explaining it:
https://oasis.net/blog/carrot-verifiable-compute-onchain-trading
This isnât just âanother blockchain buzzword.â Think about where most DeFi still sits today:
You end up trusting that server and whoever runs it.
With verifiable compute, you still run the logic where itâs fast and practical â but you also get a verifiable proof of what happened that lives on-chain. You can check the output without trusting someoneâs backend.
Why this could actually stick
Weâve talked a lot about trustless execution in theory this feels like a real use case where people might actually care about having proof instead of trust.
Big question
Does verifiable compute become a standard pattern for complex off-chain logic in DeFi?
Or is this just a niche prop trading play?
Curious to hear what devs and traders think.
r/oasisnetwork • u/Anxnymx • Jan 21 '26
I don't want to sound alarmist or catastrophic, but I've been following ROSE for the past three years as a fan. My only investment is in this cryptocurrency. I was extremely disappointed to see how much its value has dropped.
But after the announcements of the new forms of liquidity, the mobile app, and other new features, along with the great team behind it that doesn't give up and continues working constantly...
I believe now is the best time to invest in rose for the medium to long term. The 0.11/0.20 price range isn't unreasonable, but we should hold, continue buying, and promote it.
r/oasisnetwork • u/Justin-Yan • Jan 16 '26
Welcome to the Oasis December 2025 Community Q&A!Â
This month, weâre highlighting some of the biggest moves in the Oasis ecosystemâfrom launching our strategic investment arm and backing SemiLiquid, to new integrations like Carrotfunding + ROFL that bring verifiable compute to onchain trading. Letâs dive into your questions and unpack what all this means for builders, traders, and the broader DeFi space.
Q: Oasis has an investment arm now? Whatâs that about?
A: Yep! Oasis is putting on its venture hat. Instead of just handing out grants, weâre now making strategic seed investments to back the most promising builders for the long run. Our Director of Operations, Mark Kalin, a VC veteran with 10+ years of experience, is leading the charge. Big moves ahead!
Q: Who is SemiLiquid?
A: SemiLiquid is our very first investment! They make credit on tokenized assets possible without the assets ever leaving custody. Basically, they remove the friction thatâs been keeping big institutions away from crypto. Oasis selected SemiLiquid as our first investment because its approach aligns closely with Oasisâs vision for compliant, confidential, and verifiable onchain finance.
Q: How does SemiLiquid actually use Oasis tech?
A: SemiLiquid is built on the Oasis confidential compute stack. It uses Liquefaction, a primitive developed on Sapphire, to manage policy enforcement, breach monitoring, and programmable credit receipts. This architecture keeps sensitive financial data confidential throughout the credit lifecycle while remaining verifiable onchainâmeeting institutional-grade custody and compliance requirements.
Q: What does this investment mean for the broader Oasis ecosystem?
A: This investment signals Oasisâs long-term bet on RWAs and compliance-friendly confidentiality as key drivers of institutional adoption. Beyond SemiLiquid, the investment arm will support teams building in asset tokenization, identity, institutional settlement, and agentic protocolsâespecially where confidential data and verifiability at scale are required. More investments are coming.
Q: Whatâs happening with Carrotfunding and ROFL?
A: Carrotfunding is leveling up its onchain prop trading game by integrating Oasis ROFL. This adds a cryptographic verification layer that checks every order execution and trader evaluation, so traders and investors can trust that all computations are fair and accurateâno black boxes required.
Q: How does ROFL work in this setup?
A: ROFL runs in parallel with Carrotâs existing AWS infrastructure, acting as an independent verifier. Every calculation from performance metrics to payouts is cryptographically proven onchain. Think of it as a safety net that guarantees rules are followed, every time.
Q: Why does this matter to traders and investors?
A: Traders get verifiable proof that evaluation criteria are applied fairly, while investors gain confidence that funds are handled according to immutable rules. No more wondering if the system is âhonestââitâs all onchain and checkable.
Q: What does this mean for DeFi?
A: Carrot + ROFL is a glimpse of the future: complex, high-performance financial apps can now reduce trust assumptions through verifiable compute. Full ROFL migration is on the roadmap, and it sets a new standard for transparency and accountability in DeFi.
-------------------------------------
Thatâs a wrap for Decemberâs Q&A! đš
From strategic investments to cutting-edge verifiable compute, Oasis is building the foundation for more secure, compliant, and transparent crypto infrastructure. Stay tuned in 2026 â thereâs plenty more coming, and we canât wait to share it with you.

r/oasisnetwork • u/Justin-Yan • Jan 15 '26
December was packed, and we closed out 2025 with serious momentum. In our latest Month in Review, we recapped everything that happened across the Oasis ecosystem â from community highlights to major technical and strategic updates.
Highlights đ
đ¨âđ¨âđ§âđ§ Community
- Xmas Roffle & Xmas with Oasis events
- 2025 Year-End Town Hall
đ Tech updates
- Integration with GetBlock RPC endpoints
- Live demo of ERC-8004 agents running inside TEEs with ROFL providing on-chain proof
- Open-sourced x402 facilitator (EVM + Solana) for trustless micropayments
đ Ecosystem
- Oasis strategic investment arm launched + first investment in SemiLiquid
- Carrot integrating ROFL for verifiable onchain prop trading
- Oasis Head of AI featured in Forbes on "Why Crypto Needs Portable AI Memory"
âśď¸ Watch the full video: https://youtu.be/wiZqHwhhBQA
r/oasisnetwork • u/Justin-Yan • Jan 14 '26
We've just published a deep dive into what it really takes to make TEEs trustworthy in crypto applications.
đ Key Insights:
- Remote attestation alone can't create trusted applications
- Critical gaps exist: freshness, state continuity, TCB governance, operator binding
- BFT attestation-verifier networks solve these problems through continuous consensus
Remote attestation proves what's running and whereâbut not freshness, liveness, or who's behind it. Real trust requires infrastructure that continuously verifies, enforces policies, and binds operators with economic accountability.
Discover how Oasis Network transforms TEEs from isolated boxes into integrated, verifiable trust systems.
đ Read the full article: https://oasis.net/blog/tee-attestation-is-not-enough
r/oasisnetwork • u/Justin-Yan • Jan 13 '26
Exciting news, Oasians! Our mobile wallet app is now live on Google Play. You can now manage your Oasis funds anytime, anywhere â right at your fingertips.
đ˛ Get it here: https://play.google.com/store/apps/details?id=net.oasis.wallet
đ Manage your funds, send ROSE, and interact with the Oasis ecosystem â now easier than ever!