Daniel Kronovet
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# Dojo 1.7 / Starknet 0.14 migration guide ## Starknet 0.14.0 Starknet's [upcoming 0.14.0 upgrade](https://community.starknet.io/t/sn-0-14-0-pre-release-notes/115618) represents a big step forward for the network, migrating to a multi-sequencer architecture. **The upgrade is scheduled to go live on mainnet September 1, 2025.** Some of the key changes include: - The move to a multi-sequencer architectures (3 sequencers!) - Introduction of RPC 0.9 and the "Preconfirmed" status - Ending support for v1, v2, and RPC-0.7 v3 transactions - Advanced fee markets (following EIP-1559) [See the Starknet governance proposal](https://governance.starknet.io/voting-proposals/9) [See the Starknet 0.14 release notes](https://docs.starknet.io/resources/version-notes/#starknet_v0_14_0_aug_18_25) [See more information about Starknet transactions](https://docs.starknet.io/architecture/transactions/) [See the Starknetjs v8 migration guide](https://starknetjs.com/docs/next/guides/migrate/) [See the RPC 0.9 spec](https://github.com/starkware-libs/starknet-specs/releases/tag/v0.9.0) ### Multi-Sequencer Architecture Starknet 0.14.0 introduces of multiple sequencers, who will produce blocks round-robin, running Tendermint consensus on each block. Each sequencer will keep its *own transaction mempool* which is not gossiped to other sequencers. However, once a sequencer accepts a transaction (`pre_confirmed`), it *will* gossip the transaction to other sequencers, ensuring transactions are processed regardless of which sequencer receives the request. Note that currently, p2p communication is not enabled for full nodes. **This means that full nodes *are not aware* of transactions submitted by other nodes, until they are confirmed.** Users are advised to maintain sticky HTTP connections to a single full node in order to get accurate information about transaction status. ### Pending vs Preconfirmed Transaction Status Previously, a sequencer would execute transactions while preparing a block and tag those transactions as "pending". These transactions would often be displayed as "finalized on L2" even though there was still a chance that the block would fail to finalize (e.g. in the case of a sequencer crash or L1 re-org). This created confusing edge-cases where "confirmed" transactions might be rolled back, impeding UI development. The introduction of the "preconfirmed" state clarifies the distinction between a transaction which a sequencer has successfully executed (i.e. "preconfirmed") but has not yet been "accepted on L2" (i.e. achieved finality). This allows for a more reliable UX, **with "preconfirmed" status available within 0.5 seconds of tx submission.** ### New Mempool behaviors Various change to how transactions are treated in the mempool. - Increasing the fee by 10%+ will replace a pending same-nonce tx - Transactions have a 5 min TTL, after which they will be booted from the mempool - A nonce increase of +50-100 from the previous accepted nonce will be rejected ## Dojo 1.7.0 As part of the Starknet 0.14.0 upgrade, Dojo will be releasing version 1.7.0 of the framework and its toolchain, with several important changes. **Dojo v1.7 is targeting internal prerelease August 12, and public release on August 15.** ### Dojo Dojo v1.7.0 will introduce the new `DojoStore` trait as a solution to limitations regarding enum serialization. See [this guide](https://hackmd.io/@remyb/HyKHqDqull) for more context. ### Installation There is now asdf plugins for each tool of the stack : `asdf plugin add katana https://github.com/dojoengine/asdf-katana.git` `asdf plugin add torii https://github.com/dojoengine/asdf-torii.git` `asdf plugin add sozo https://github.com/dojoengine/asdf-sozo.git` sozo v1.7.0-alpha.1 still relies on a nightly scarb version : `asdf install scarb nightly-2025-05-08` ### Katana Katana v1.7.0 introduces support for RPC 0.9, and removes support for RPC 0.8 or below. ### Torii Torii v1.7.0 introduces support for RPC 0.9, and removes support for RPC 0.8 or below. ### Dojo.js Dojo.js v1.7.0 bumps the underlying starknet.js to the 0.14.0-compatible v8. ### Dojo.c Dojo.c v1.7.0 bumps the underlying Dojo, Torii, and starknet-rs dependencies. ## Migration Guide Note: Dojo 1.7 includes breaking changes for both contracts and infrastructure. However, they do not need to be migrated synchronously. Existing deployed contracts will continue to work while migrating infrastructure to Starknet 0.14; contract changes are necessary only as part of ongoing contract development. ### Contract Updates The introduction of the new `DojoStore` trait affects serialization for all Dojo models containing enums. If this applies to your project, you will need to do a simple migration to avoid data loss. Note that this is a **breaking change**. More information and instructions can be found [in this document](https://hackmd.io/@remyb/HyKHqDqull). ### Slot Users For Slot users, all Katana and Torii instances will be upgraded automatically. No action is necessary on your part. Please ensure that any other infrastructure / RPC nodes are upgraded to RPC 0.9. ### Manual Deployments For teams managing Katana or Torii instances manually, please upgrade your instances to their respective 1.7 versions. If using your own deployers / executors, please ensure your accounts have support for v3 transactions. ### Client SDK Updates For teams using Dojo.js or Dojo.c for their clients, please upgrade to version 1.7 to ensure compatibility with Katana and Torii. #### Dojo.js The main differences you'll need to migrate are documented here in [starknet.js](https://starknetjs.com/docs/next/guides/migrate/). #### Dojo.c You should be able to use the wasm build with no changes. However if you're using the RPC client directly, upgrade the `starknet` crate to `v0.17.0`.

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully