starknet 5.9.1 → 5.9.2
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 +4 -4
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [5.9.2](https://github.com/0xs34n/starknet.js/compare/v5.9.1...v5.9.2) (2023-05-03)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- revert doc changes ([356b04d](https://github.com/0xs34n/starknet.js/commit/356b04d94a398ba7642cae6bffa8961213dda33c))
|
|
6
|
+
|
|
1
7
|
## [5.9.1](https://github.com/0xs34n/starknet.js/compare/v5.9.0...v5.9.1) (2023-05-02)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/dist/index.d.ts
CHANGED
|
@@ -775,10 +775,10 @@ declare type STATE_UPDATE = {
|
|
|
775
775
|
};
|
|
776
776
|
declare type STORAGE_KEY = string;
|
|
777
777
|
declare type EVENT_FILTER = {
|
|
778
|
-
from_block
|
|
779
|
-
to_block
|
|
780
|
-
address
|
|
781
|
-
keys
|
|
778
|
+
from_block: BLOCK_ID;
|
|
779
|
+
to_block: BLOCK_ID;
|
|
780
|
+
address: ADDRESS;
|
|
781
|
+
keys: Array<FELT>;
|
|
782
782
|
};
|
|
783
783
|
declare type RESULT_PAGE_REQUEST = {
|
|
784
784
|
continuation_token?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "starknet",
|
|
3
|
-
"version": "5.9.
|
|
3
|
+
"version": "5.9.2",
|
|
4
4
|
"description": "JavaScript library for Starknet",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
"info:version": "npm pkg get version | xargs",
|
|
35
35
|
"format": "prettier --loglevel warn --write \"**/*.{ts,js,md,yml,json}\"",
|
|
36
36
|
"lint": "eslint . --cache --fix --ext .ts",
|
|
37
|
-
"ts:check": "tsc --noEmit --resolveJsonModule --project tsconfig.eslint.json"
|
|
37
|
+
"ts:check": "tsc --noEmit --resolveJsonModule --project tsconfig.eslint.json",
|
|
38
|
+
"docker:run": "docker run -p 5050:5050 shardlabs/starknet-devnet:next --seed 0 --timeout 5000 --disable-rpc-request-validation"
|
|
38
39
|
},
|
|
39
40
|
"keywords": [
|
|
40
41
|
"starknet",
|