Skip to content

Commit 5fa8eaa

Browse files
authored
v0.13.3 release notes (#1400)
* added v0.13.3 release notes * added additional resources * code review
1 parent ce62817 commit 5fa8eaa

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

components/Starknet/modules/starknet-versions/pages/version-notes.adoc

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,39 @@
11
[id="upcoming"]
22
= Release notes
33

4-
[NOTE]
4+
[TIP]
55
====
66
You can get the latest version updates delivered to your inbox by subscribing to the link:https://www.starknet.io/starknet-devs-newsletter/[Starknet Devs Newsletter].
77
====
88

9+
[id="version0.13.3"]
10+
== Starknet v0.13.3 (November 20, 24)
11+
12+
Blob gas on Starknet is now 5x cheaper (!) using:
13+
14+
* Squashing discount factor: Users pay for the expected marginal contribution of their transaction to the blobs sent to L1
15+
16+
* State diff compression: Starknet submits compressed state diffs to L1. To better lends itself to the new compression scheme as well as allow its construction to be based on the state diff alone, the uncompressed encoding of contract diff headers changes to:
17+
+
18+
[stem]
19+
++++
20+
\underbrace{\text{new_nonce (if changed)}}_{\text{64 bits}} |
21+
\underbrace{\text{n_updates}}_{\text{8 or 64 bits}} | \underbrace{\text{n_updates_len}}_{\text{1 bit}} | \underbrace{\text{flag}}_{\text{1 bit}}
22+
++++
23+
+
24+
where:
25+
26+
** The semantics of `flag` is unchanged (i.e., it indicates whether or not the class was replaced)
27+
** `n_updates_len` is 0 if the number of updates is less than 256 (and therefore can fit in 8 bits), and 1 otherwise
28+
** `n_updates` can spread over 8 or 64 bits, depending on `n_updates_len`
29+
** If the nonce of the contract is unchanged, the value of `new_nonce` is zero (and not the unchanged nonce)
30+
31+
[discrete]
32+
=== Additional resources
33+
34+
* link:https://community.starknet.io/t/starknet-v0-13-3/115053[Starknet v0.13.3 post in the Starknet community forum]
35+
* link:https://community.starknet.io/t/fall-roadmap-updates/115001[Fall roadmap updates post on the Starknet community forum]
36+
937
[id="version0.13.2"]
1038
== Starknet v0.13.2 (August 28, 24)
1139

0 commit comments

Comments
 (0)