Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Refactor new RPC into several files #1007

Merged
merged 59 commits into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
20585f1
From/TryFrom starknet api types
mmsc2 Aug 29, 2023
24b327e
Add deploy account
mmsc2 Aug 29, 2023
8f62569
Modify gitignore
mmsc2 Aug 29, 2023
dc8f5a1
Deploy account and invoke function
mmsc2 Aug 29, 2023
d4491cf
Change into_iter to iter
mmsc2 Aug 29, 2023
10467c8
Update .gitignore
juanbono Aug 29, 2023
4b16b7b
change to try_from
mmsc2 Aug 29, 2023
78b9ee7
Merge branch 'FromStarknetApi' of github.com:lambdaclass/starknet_in_…
mmsc2 Aug 29, 2023
327bddc
Merge branch 'main' into FromStarknetApi
mmsc2 Aug 29, 2023
f40fad6
Move functions to its respective files
mmsc2 Aug 29, 2023
9ec7c07
Merge branch 'FromStarknetApi' of github.com:lambdaclass/starknet_in_…
mmsc2 Aug 29, 2023
160b82d
Merge branch 'main' into FromStarknetApi
xqft Aug 30, 2023
5ce80fb
WIP Added SIR support to SNRPC
xqft Aug 30, 2023
75894a4
Implemented state reader for sir
xqft Aug 30, 2023
d277eb3
WIP Transaction
xqft Aug 30, 2023
9f810d4
WIP SiR execution
xqft Aug 30, 2023
7dcc455
Fixed rpc sir execute_tx
xqft Aug 30, 2023
99e7cc0
Fix clippy
xqft Aug 30, 2023
f84aaf3
Import last version of sn_api
xqft Aug 30, 2023
edd9fd6
Formatting
xqft Aug 30, 2023
70335b5
Test
mmsc2 Aug 30, 2023
403aa45
Merge branch 'FromStarknetApi' of github.com:lambdaclass/starknet_in_…
mmsc2 Aug 30, 2023
ffb9e28
Test try from
mmsc2 Aug 30, 2023
bea372a
Delete test
mmsc2 Aug 30, 2023
af487c0
Fix format
mmsc2 Aug 30, 2023
c11eb16
Fix test
mmsc2 Aug 30, 2023
e630727
Merge branch 'main' into FromStarknetApi
mmsc2 Aug 30, 2023
caa7dab
local test cases
edg-l Aug 31, 2023
8488374
specify block manually
edg-l Aug 31, 2023
ca8ec65
conflicts
edg-l Sep 1, 2023
f93487a
add test_case for blockifier
edg-l Sep 1, 2023
d3ead14
use more recent txs
edg-l Sep 1, 2023
600bb28
dont keep cached responses
edg-l Sep 1, 2023
d55c891
add failing tx on blockifier
edg-l Sep 1, 2023
ba25a95
more tests
edg-l Sep 1, 2023
6ad0466
Merge branch 'main' into deprecate_old_rpc
xqft Sep 1, 2023
eb6acb8
Merge branch 'FromStarknetApi' into deprecate_old_rpc
xqft Sep 1, 2023
3340856
Merge branch 'main' into deprecate_old_rpc
xqft Sep 1, 2023
fcccf58
Fix clippy
xqft Sep 1, 2023
b3fd019
conflicts
edg-l Sep 1, 2023
152e8c9
fix bug
edg-l Sep 4, 2023
f04b2a2
tests
edg-l Sep 4, 2023
098f14a
Merge branch 'main' into deprecate_old_rpc
xqft Sep 4, 2023
ab48bb5
Replaced try_from with from_invoke_transaction
xqft Sep 4, 2023
8b83cd2
infer version
edg-l Sep 4, 2023
52dd83c
Fix version
xqft Sep 4, 2023
8e50309
Changed test_try_from_invoke
xqft Sep 4, 2023
a0d34e6
Ignore test_recent_tx
xqft Sep 4, 2023
1bbe37f
fix conflict
edg-l Sep 4, 2023
64ae6e0
ignore failing tests
edg-l Sep 4, 2023
ce4060b
Refactor tx deser, (un)ignore tests
xqft Sep 4, 2023
4f02a58
conflicts
edg-l Sep 4, 2023
4e2cf37
sorted assert and fee threshold
edg-l Sep 4, 2023
3c71854
fix conflicts
edg-l Sep 5, 2023
2cff2cf
Merge branch 'main' into rpc_test_cases_local
edg-l Sep 6, 2023
bfadda6
refactor rpc state reader
edg-l Sep 5, 2023
ce39a21
fixes
edg-l Sep 6, 2023
f601cb9
fix
edg-l Sep 6, 2023
8513d89
Merge branch 'main' into rpc_refactor_edgl
edg-l Sep 6, 2023
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
2 changes: 1 addition & 1 deletion rpc_state_reader_sn_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
ureq = { version = "2.7.1", features = ["json"] }
serde = { version = "=1.0.171", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = [
"arbitrary_precision",
"raw_value",
Expand Down
Loading