Skip to content

Commit af4af75

Browse files
authored
Merge pull request #1363 from starknet-io/develop
Release
2 parents d7fef88 + 83a59c3 commit af4af75

File tree

468 files changed

+43112
-253063
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

468 files changed

+43112
-253063
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## [6.24.1](https://github.com/starknet-io/starknet.js/compare/v6.24.0...v6.24.1) (2025-03-20)
2+
3+
### Bug Fixes
4+
5+
- repair snip-12 enum type nested dependency ([#1289](https://github.com/starknet-io/starknet.js/issues/1289)) ([1cd4219](https://github.com/starknet-io/starknet.js/commit/1cd4219df5e61a676bc58ba8c8673269695fc2db))
6+
7+
# [6.24.0](https://github.com/starknet-io/starknet.js/compare/v6.23.1...v6.24.0) (2025-03-12)
8+
9+
### Features
10+
11+
- 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))
12+
- 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))
13+
114
## [6.23.1](https://github.com/starknet-io/starknet.js/compare/v6.23.0...v6.23.1) (2025-02-05)
215

316
### Bug Fixes
+22
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)