-
Notifications
You must be signed in to change notification settings - Fork 67
docs: add T10 network upgrade #818
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
jenpaff
merged 4 commits into
main
from
centaur/document-t10-network-upgrade-1786977939
Aug 17, 2026
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| --- | ||
| title: T10 Network Upgrade | ||
| description: T10 enshrines ZoneFactory and installs canonical ZonePortal runtimes for native zone creation. | ||
| --- | ||
|
|
||
| # T10 Network Upgrade | ||
|
|
||
| T10 makes zone creation a native Tempo protocol operation. It enshrines `ZoneFactory`, assigns each zone a deterministic `ZonePortal` address, and installs canonical shared runtimes for portals, verification, and messaging. | ||
|
|
||
| For most partners, T10 matters if you operate a node, create Tempo Zones, or integrate directly with `ZoneFactory` and `ZonePortal`. | ||
|
|
||
| :::info[T10 status] | ||
| T10 is scheduled for testnet on August 20, 2026 at 14:00 UTC and mainnet on August 21, 2026 at 14:00 UTC. The forthcoming v1.13.0 release is required; see the [Network Upgrades and Releases table](/docs/guide/node/network-upgrades#node-operator-updates) for the current node-operator release status. | ||
| ::: | ||
|
|
||
| ## Timeline | ||
|
|
||
| | Network | Date | Unix timestamp | | ||
| |---------|------|----------------| | ||
| | Testnet | August 20, 2026 at 14:00 UTC | `1787234400` | | ||
| | Mainnet | August 21, 2026 at 14:00 UTC | `1787320800` | | ||
|
|
||
| Node operators must run v1.13.0 before T10 activates on their network to stay synced. | ||
|
|
||
| ## T10 upgrade overview | ||
|
|
||
| T10 introduces three related protocol changes: | ||
|
|
||
| - **Native zone creation.** `ZoneFactory` becomes a precompile at `0x5AF2000000000000000000000000000000000000`. | ||
| - **Deterministic zone portals.** Every new zone receives a `ZonePortal` account whose address encodes its zone ID. | ||
| - **Protocol-managed shared runtimes.** The hardfork installs canonical portal, verifier, and messenger runtimes at reserved addresses. | ||
|
|
||
| Read the [TIP-1091 specification](https://github.com/tempoxyz/tempo/blob/main/tips/tip-1091.md). | ||
|
|
||
| ## Native `ZoneFactory` | ||
|
|
||
| Zone creation moves from a separately deployed factory contract into the Tempo protocol. The native factory retains the canonical registry behavior, including sequential zone IDs, `zones`, `nextZoneId`, `isZonePortal`, and the `ZoneCreated` event. | ||
|
|
||
| The initial T10 rollout is permissioned. Only the factory owner can call `createZone`; a later hardfork can open zone creation. A successful `createZone` call consumes at least 15,000,000 gas. | ||
|
|
||
| An initial TIP-20 token must have an explicit [TIP-403 policy binding](/docs/protocol/upgrades/t9) before the factory can create a zone with it. | ||
|
|
||
| ## Deterministic `ZonePortal` accounts | ||
|
|
||
| Each zone receives a portal at a reserved vanity address. The high 12 bytes are the fixed prefix `0x5AD000000000000000000000`, and the low 8 bytes contain the zone ID in big-endian form. For example, zone ID `1` maps to: | ||
|
|
||
| ```text | ||
| 0x5AD0000000000000000000000000000000000001 | ||
| ``` | ||
|
|
||
| Use `ZoneFactory.isZonePortal(address)` to validate portal addresses instead of reproducing the prefix and zone-ID checks in application code. | ||
|
|
||
| Each portal is an ERC-1167 proxy to a shared, protocol-managed implementation. Portals keep independent state while using the same canonical logic. | ||
|
|
||
| ## Protocol-managed Zone runtimes | ||
|
|
||
| At activation, T10 installs the factory and three shared runtimes atomically: | ||
|
|
||
| | Component | Address | | ||
| |-----------|---------| | ||
| | `ZoneFactory` | `0x5AF2000000000000000000000000000000000000` | | ||
| | `ZonePortal` implementation | `0x5AD1000000000000000000000000000000000000` | | ||
| | Zone verifier | `0x5a56000000000000000000000000000000000000` | | ||
| | Zone messenger | `0x5A4d000000000000000000000000000000000000` | | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.