starknet 8.3.0 → 8.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [8.3.1](https://github.com/starknet-io/starknet.js/compare/v8.3.0...v8.3.1) (2025-08-15)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- ensure a Buffer type is available for all environments ([6e67834](https://github.com/starknet-io/starknet.js/commit/6e678343876504082d3c232a115b1c48a8f6ce96))
|
|
6
|
+
|
|
1
7
|
# [8.3.0](https://github.com/starknet-io/starknet.js/compare/v8.2.0...v8.3.0) (2025-08-15)
|
|
2
8
|
|
|
3
9
|
### Features
|
package/dist/index.d.ts
CHANGED
|
@@ -3408,6 +3408,11 @@ type V3DeployAccountSignerDetails = Required<DeployAccountContractPayload> & V3T
|
|
|
3408
3408
|
};
|
|
3409
3409
|
type LedgerPathCalculation = (accountId: number, applicationName: string) => Uint8Array;
|
|
3410
3410
|
|
|
3411
|
+
declare global {
|
|
3412
|
+
interface Buffer<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> extends Uint8Array<TArrayBuffer> {
|
|
3413
|
+
}
|
|
3414
|
+
}
|
|
3415
|
+
|
|
3411
3416
|
declare const LogLevelIndex: {
|
|
3412
3417
|
DEBUG: number;
|
|
3413
3418
|
INFO: number;
|