Skip to content

Commit 87e3161

Browse files
committed
Merge branch 'develop' into beta
2 parents f65f7b4 + 17e8511 commit 87e3161

File tree

19 files changed

+2444
-86
lines changed

19 files changed

+2444
-86
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@
1818

1919
- Library defaults to RPC 0.8 with the corresponding API changes, dropped RPC 0.6 support
2020

21+
# [6.24.0](https://github.com/starknet-io/starknet.js/compare/v6.23.1...v6.24.0) (2025-03-12)
22+
23+
### Features
24+
25+
- add simulate and estimate fee utility methods for outside execution ([#1327](https://github.com/starknet-io/starknet.js/issues/1327)) ([3668b01](https://github.com/starknet-io/starknet.js/commit/3668b01c4f63969bb0770ee6120fe3eac72d0335))
26+
- implement cairo fixed array support ([#1310](https://github.com/starknet-io/starknet.js/issues/1310)) ([45df63e](https://github.com/starknet-io/starknet.js/commit/45df63e7bb7f7cb2de2e98900387b1c44a95f257))
27+
2128
## [6.23.1](https://github.com/starknet-io/starknet.js/compare/v6.23.0...v6.23.1) (2025-02-05)
2229

2330
### Bug Fixes
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Cairo 2.9.2
2+
3+
#[starknet::interface]
4+
trait ITestFixedArray<TContractState> {
5+
//fn test_u384(self:@TContractState)->u384;
6+
fn fixed_array(self: @TContractState, x: [core::integer::u32; 8]) -> [core::integer::u32; 8];
7+
}
8+
9+
#[starknet::contract]
10+
mod testfixed_array {
11+
12+
#[storage]
13+
struct Storage {
14+
}
15+
16+
#[abi(embed_v0)]
17+
impl TestFixed of super::ITestFixedArray<ContractState> {
18+
fn fixed_array(self: @ContractState, x: [core::integer::u32; 8]) -> [core::integer::u32; 8] {
19+
x
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)