Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Starknet types 0.7 #1087

Merged
merged 2 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
268 changes: 166 additions & 102 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@
"isomorphic-fetch": "^3.0.0",
"lossless-json": "^4.0.1",
"pako": "^2.0.4",
"starknet-types": "^0.0.5",
"ts-mixer": "^6.0.3",
"url-join": "^4.0.1"
"url-join": "^4.0.1",
"starknet-types-07": "npm:starknet-types@^0.7.2"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
Expand Down
4 changes: 2 additions & 2 deletions src/types/api/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export * as JRPC from './jsonrpc';

export * as RPCSPEC06 from './rpcspec_0_6';
export * as RPCSPEC07 from './rpcspec_0_7';
export * from './rpcspec_0_7';
export * as RPCSPEC07 from 'starknet-types-07';
export * from 'starknet-types-07';
Loading