You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
26
26
27
27
- The v10 JSON-RPC endpoint now supports final JSON-RPC v0.10.1 spec.
28
28
-`blockifier` has been upgraded to 0.18.0-dev.1, ensuring correctness of execution results on Starknet 0.14.2.
29
+
- The `proof` field in broadcasted invoke v3 transactions is now a base64-encoded byte blob (`Vec<u8>`) instead of base64-encoded packed `u32` values (`Vec<u32>`). This reflects the upstream change to use compressed proofs. The P2P wire format changes from `repeated uint32` to `bytes`.
Copy file name to clipboardExpand all lines: crates/p2p_proto/proto/transaction.proto
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ message InvokeV3 {
68
68
// Used in consensus and mempool contexts where proof is included.
69
69
messageInvokeV3WithProof {
70
70
InvokeV3invoke=1;
71
-
repeateduint32proof=2;
71
+
bytesproof=2;
72
72
}
73
73
74
74
// see https://external.integration.starknet.io/feeder_gateway/get_transaction?transactionHash=0x29fd7881f14380842414cdfdd8d6c0b1f2174f8916edcfeb1ede1eb26ac3ef0
0 commit comments