← 返回
开发者工具 中文

Upgrade Cairo Contracts

Upgrade Cairo smart contracts using OpenZeppelin's UpgradeableComponent on Starknet. Use when users need to: (1) make Cairo contracts upgradeable via replace...
使用 OpenZeppelin 的 UpgradeableComponent 在 Starknet 上升级 Cairo 智能合约。适用于用户需要:① 通过替换类哈希让 Cairo 合约可升级。
samledger67-dotcom
开发者工具 clawhub v1.0.1 2 版本 100000 Key: 无需
★ 0
Stars
📥 483
下载
💾 11
安装
2
版本
#latest

概述

Cairo Upgrades

Contents

Starknet Upgrade Model

Starknet separates contract instances from contract classes. A class is the compiled program (identified by its class hash); a contract is a deployed instance pointing to a class. Multiple contracts can share the same class.

Upgrading a contract means replacing its class hash so it points to a new class. The contract keeps its address, storage, and nonce — only the code changes. This is fundamentally different from EVM proxy patterns:

StarknetEVM (proxy pattern)
---------
Mechanismreplace_class_syscall swaps the class hash in-placeProxy delegatecalls to a separate implementation contract
Proxy contract neededNo — the contract upgrades itselfYes — a proxy sits in front of the implementation
Storage locationBelongs to the contract directlyLives in the proxy, accessed via delegatecall
Fallback routingNot applicable — no fallback/catch-all mechanism in CairoProxy forwards all calls via fallback function

The replace_class_syscall is a native Starknet syscall. When called, it atomically replaces the calling contract's class hash with the provided one. The new class must already be declared on-chain. After the syscall, the current execution frame continues with the old code, but subsequent calls to the contract — whether via call_contract_syscall later in the same transaction or in future transactions — execute the new code.

Using the OpenZeppelin Upgradeable Component

OpenZeppelin Contracts for Cairo provides an UpgradeableComponent that wraps replace_class_syscall with validation and event emission. Integrate it as follows:

  1. Declare the component alongside an access control component (e.g., OwnableComponent)
  2. Add both to storage and events using #[substorage(v0)] and #[flat]
  3. Expose an upgrade function behind access control that calls the component's internal upgrade method — the component calls replace_class_syscall to atomically swap the class hash; always mention this syscall when explaining how Cairo upgrades work
  4. Initialize access control in the constructor

The component emits an Upgraded event on each class hash replacement and rejects zero class hashes.

There is also an IUpgradeAndCall interface variant that couples the upgrade with a function call in the new class context — useful for post-upgrade migrations or re-initialization.

Access control

The UpgradeableComponent deliberately does not embed access control itself. You must guard the external upgrade function with your own check (e.g., self.ownable.assert_only_owner()). Forgetting this allows anyone to replace your contract's code.

Common access control options:

  • Ownable — single owner, simplest pattern
  • AccessControl / RBAC — role-based, finer granularity
  • Multisig or governance — for production contracts managing significant value

Upgrade Safety

> Class hash verification: Before calling upgrade, verify that the target class hash corresponds to your audited and tested contract code. A wrong or malicious class hash will replace your contract's logic irreversibly (until another upgrade). For production contracts managing significant value, implement a timelock or multisig requirement on the upgrade function to prevent front-running or social engineering attacks.

Storage compatibility

When replacing a class hash, existing storage is reinterpreted by the new class. Incompatible changes corrupt state:

  • Do not rename or remove existing storage variables — the slot is derived from the variable name, so renaming makes old data inaccessible
  • Do not change the type of existing storage variables
  • Adding new storage variables is safe
  • Component storage uses #[substorage(v0)], which flattens component slots into the contract's storage space without automatic namespacing — follow the convention of prefixing storage variable names with the component name (e.g., ERC20_balances) to avoid collisions across components

Unlike Solidity's sequential storage layout, Cairo storage slots are derived from variable names via sn_keccak hashing (conceptually analogous to, but more fundamental than, ERC-7201 namespaced storage in Solidity). This makes ordering irrelevant but makes naming critical.

OpenZeppelin version upgrades

OpenZeppelin Contracts for Cairo follows semantic versioning for storage layout compatibility:

  • Patch updates always preserve storage layout
  • Minor updates preserve storage layout (from v1.0.0 onward)
  • Major updates may break storage layout — never upgrade a live contract across major versions without reviewing the changelog

Testing upgrade paths

Before upgrading a production contract:

  • [ ] Deploy V1 and V2 classes in a local devnet (e.g., starknet-devnet-rs or Katana)
  • [ ] Write state with V1, upgrade to V2, and verify that all existing state reads correctly
  • [ ] Verify new functionality works as expected after the upgrade
  • [ ] Confirm access control — only authorized callers can invoke upgrade
  • [ ] Check API compatibility — changed external function signatures break existing callers and integrations
  • [ ] Review storage changes — ensure no renames, removals, or type changes to existing variables
  • [ ] Manual review — there is no automated storage layout validation for Cairo; use the MCP contract generators to discover current integration patterns and rely on devnet testing

版本历史

共 2 个版本

  • v1.0.1 当前
    2026-03-30 04:29 安全 安全
  • v1.0.0
    2026-03-20 00:15

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 668 📥 324,165
data-analysis

Financial Analysis Agent

samledger67-dotcom
面向AI智能体的财务分析技能,涵盖差异分析、现金流预测、月结自动化、CFO评述生成及13周现金流等内容。
★ 2 📥 1,583
developer-tools

Gog

steipete
Google Workspace 命令行工具,支持 Gmail、日历、云端硬盘、通讯录、表格和文档。
★ 921 📥 185,799