Skip to content

Commit 09b392c

Browse files
committed
Update versions in docs
1 parent 874eefa commit 09b392c

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

STANDARDS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The OpenZeppelin approach to achieve this goal will include the following sectio
4949

5050
⊞ Quadrants: Information-Oriented/Reference
5151

52-
📖 [Reference Example](https://docs.openzeppelin.com/contracts-cairo/alpha/api/access)
52+
📖 [Reference Example](https://docs.openzeppelin.com/contracts-cairo/3.x/api/access)
5353

5454

5555
It should be noted that not every library or tool may have every section, and that’s ok. This is purely a guide to help kickstart helpful documentation, not a strict pattern to follow.

content/contracts-cairo/2.x/api/merkle-tree.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This module provides:
1515

1616
To use it as a standalone package, you can add it in your `Scarb.toml` as follows:
1717

18-
`openzeppelin_merkle_tree = "3.0.0-alpha.1"`
18+
`openzeppelin_merkle_tree = "2.0.0"`
1919

2020
## [](#modules)Modules
2121

content/contracts-cairo/2.x/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ title: Contracts for Cairo
88

99

1010
**A library for secure smart contract development** written in Cairo for [Starknet][starknet]. This library consists of a set of
11-
[reusable components](/contracts-cairo/2.x/components) to build custom smart contracts, as well as ready-to-deploy [presets](/contracts-cairo/2.x/presets). You can also
12-
find other [utilities](/contracts-cairo/2.x/api/utilities) including [interfaces and dispatchers](/contracts-cairo/alpha/interfaces) and [test utilities](/contracts-cairo/2.x/api/testing)
11+
[reusable components](/contracts-cairo/2.x/components) to build custom smart contracts, as well as ready-to-deploy [presets](/contracts-cairo/2.x/presets). It also provides
12+
helpful [utilities](/contracts-cairo/2.x/api/utilities) and [test utilities](/contracts-cairo/2.x/api/testing)
1313
that facilitate testing with Starknet Foundry.
1414

1515
<Callout>

content/contracts-cairo/3.x/guides/deploy-udc.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ under one important assumption: **the declared UDC class hash MUST be the same a
3333
Different compiler versions may produce different class hashes for the same contract, so you need to make
3434
sure you are using the same compiler version to build the UDC class (and the release profile).
3535

36-
The latest version of the UDC available in the `openzeppelin_presets` package was compiled with **Cairo v2.11.4** (release profile) and the resulting class hash is `0x01b2df6d8861670d4a8ca4670433b2418d78169c2947f46dc614e69f333745c8`.
36+
The latest version of the UDC available in the `openzeppelin_presets` package was compiled with **Cairo v2.13.1** (release profile) and the resulting class hash is `0x01b2df6d8861670d4a8ca4670433b2418d78169c2947f46dc614e69f333745c8`.
3737

3838
<Callout type='warn'>
3939
If you are using a different compiler version, you need to make sure the class hash is the same as the one above in order to keep the same address across all networks.
@@ -88,7 +88,7 @@ The bootstrapper contract is a simple contract that declares the UDC and allows
8888
You can find a reference implementation below:
8989

9090
<Callout>
91-
This reference implementation targets Cairo v2.11.4. If you are using a different version of Cairo, you may need to update the code to match your compiler version.
91+
This reference implementation targets Cairo v2.13.1. If you are using a different version of Cairo, you may need to update the code to match your compiler version.
9292
</Callout>
9393

9494
```rust

content/contracts-cairo/3.x/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ before proceeding, and run the following command to check that the installation
2424
```bash
2525
$ scarb --version
2626

27-
scarb 2.12.2 (dc0dbfd50 2025-09-15)
28-
cairo: 2.12.2 (https://crates.io/crates/cairo-lang-compiler/2.12.2)
27+
scarb 2.13.1 (a76aed7 2025-10-30)
28+
cairo: 2.13.1 (https://crates.io/crates/cairo-lang-compiler/2.13.1)
2929
sierra: 1.7.0
3030
```
3131

0 commit comments

Comments
 (0)