From d2b85b1ed6d92b0ba443b50b904db56efc9ef320 Mon Sep 17 00:00:00 2001 From: Can Kisagun Date: Sat, 10 Jan 2026 13:10:53 -0800 Subject: [PATCH 1/2] Update tee.md made some changes Signed-off-by: Can Kisagun --- docs/intro/protocol/tee.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/intro/protocol/tee.md b/docs/intro/protocol/tee.md index 51b588b9..52899419 100644 --- a/docs/intro/protocol/tee.md +++ b/docs/intro/protocol/tee.md @@ -6,6 +6,9 @@ sidebar_position: 3 Trusted Execution Environments (TEEs) are specialized hardware-based environments that isolate sensitive computations and data from the rest of the system, ensuring that data is processed correctly and privately. In particular, TEEs provide verifiable computation guarantees through a process called “Remote Attestation”, which proves to external parties that the TEE is running a specific, unmodified piece of software (bytecode) without any tampering. Verifiers can then use this proof to confirm that the TEE and its output is trustworthy. Additionally, TEEs can preserve privacy by keeping sensitive data and execution logic concealed from the system operator and external observers. In other words, TEEs are secure hardware areas that protect sensitive data and computations from tampering or unauthorized access. -Two key requirements for achieving full unification of Ethereum and the rollup ecosystem, without reorg risks and asynchrony at all, are shared sequencing across all chains and real-time proving (RTP). At t1, we are working on RTP by employing TEEs. However, TEEs also help with cross-chain composability by enabling lightclients in t1 to reliably read data from and write data to partner rollups. This setup allows t1 to effectively aggregate the state of Ethereum and partner rollups. Our current design, which does not rely on shared sequencing, enables t1 to have as low as a single-block asynchrony window (12 seconds) with Ethereum—a substantial improvement over the current seven-day window in Optimistic Rollups and hours-long window in Zero-Knowledge Rollups. +At t1, we are using TEEs to enable Real-Time Priving. t1 architecture enable cross-chain composability by leveraging TEEs that: +- reliably read data from partner rollups by running fullnodes in t1 node infrastructure +- prove t1 dApp execution to Ethereum and supported rollups in real-time +This architecture enables us to achieve single block asynchrony window with Ethereum (12 seconds) and supported rollup. This approach is a substantial improvement over the current seven-day window in Optimistic Rollups and hours-long window in Zero-Knowledge Rollups and synchronous composability approaches that require shared sequencing across rollups. -In addition to RTP and cross-chain communication, TEEs allow t1 to offer an encrypted mempool. An encrypted mempool prevents adversarial reordering, such as sandwich attacks, where an attacker observes a pending transaction and places trades before (front-running) and after (back-running) it, profiting at the expense of regular users. Sandwich attacks cost Ethereum users over [$100mn every year](https://eigenphi.io/mev/ethereum/sandwich). An encrypted mempool also facilitates use cases like sealed-bid auctions and information-incomplete games. +In addition to RTP and cross-chain communication, TEEs allow t1 to offer an encrypted inputs. An encrypted mempool prevents adversarial reordering, such as sandwich attacks, where an attacker observes a pending transaction and places trades before (front-running) and after (back-running) it, profiting at the expense of regular users. Sandwich attacks cost Ethereum users over [$100mn every year](https://eigenphi.io/mev/ethereum/sandwich). An encrypted mempool also facilitates use cases like sealed-bid auctions and information-incomplete games. From b23cce45ee6c0ffd0c2c874030208dfd5ec57bd5 Mon Sep 17 00:00:00 2001 From: Orest Tarasiuk | t1 <830847+OrestTa@users.noreply.github.com> Date: Sat, 10 Jan 2026 22:22:27 +0100 Subject: [PATCH 2/2] Update tee.md Signed-off-by: Orest Tarasiuk | t1 <830847+OrestTa@users.noreply.github.com> --- docs/intro/protocol/tee.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/intro/protocol/tee.md b/docs/intro/protocol/tee.md index 52899419..9d113120 100644 --- a/docs/intro/protocol/tee.md +++ b/docs/intro/protocol/tee.md @@ -6,9 +6,11 @@ sidebar_position: 3 Trusted Execution Environments (TEEs) are specialized hardware-based environments that isolate sensitive computations and data from the rest of the system, ensuring that data is processed correctly and privately. In particular, TEEs provide verifiable computation guarantees through a process called “Remote Attestation”, which proves to external parties that the TEE is running a specific, unmodified piece of software (bytecode) without any tampering. Verifiers can then use this proof to confirm that the TEE and its output is trustworthy. Additionally, TEEs can preserve privacy by keeping sensitive data and execution logic concealed from the system operator and external observers. In other words, TEEs are secure hardware areas that protect sensitive data and computations from tampering or unauthorized access. -At t1, we are using TEEs to enable Real-Time Priving. t1 architecture enable cross-chain composability by leveraging TEEs that: -- reliably read data from partner rollups by running fullnodes in t1 node infrastructure +At t1, we are using TEEs to enable Real-Time Proving. t1 architecture enables cross-chain composability by leveraging TEEs that: + +- reliably read data from partner rollups by running full nodes in t1 node infrastructure - prove t1 dApp execution to Ethereum and supported rollups in real-time -This architecture enables us to achieve single block asynchrony window with Ethereum (12 seconds) and supported rollup. This approach is a substantial improvement over the current seven-day window in Optimistic Rollups and hours-long window in Zero-Knowledge Rollups and synchronous composability approaches that require shared sequencing across rollups. -In addition to RTP and cross-chain communication, TEEs allow t1 to offer an encrypted inputs. An encrypted mempool prevents adversarial reordering, such as sandwich attacks, where an attacker observes a pending transaction and places trades before (front-running) and after (back-running) it, profiting at the expense of regular users. Sandwich attacks cost Ethereum users over [$100mn every year](https://eigenphi.io/mev/ethereum/sandwich). An encrypted mempool also facilitates use cases like sealed-bid auctions and information-incomplete games. +This architecture enables us to achieve a single-block-only asynchrony window with Ethereum (12 seconds) and supported rollup. This approach is a substantial improvement over the current seven-day window in Optimistic Rollups and hours-long window in Zero-Knowledge Rollups, anda also over synchronous composability approaches which require a form of shared sequencing across rollups. + +In addition to RTP and cross-chain communication, TEEs allow t1 to support encrypted inputs. An encrypted mempool prevents adversarial reordering, such as sandwich attacks, where an attacker observes a pending transaction and places trades before (front-running) and after (back-running) it, profiting at the expense of regular users. Sandwich attacks cost Ethereum users over [$100mn every year](https://eigenphi.io/mev/ethereum/sandwich). An encrypted mempool also facilitates use cases like sealed-bid auctions and information-incomplete games.