Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
7eda960
Add a JSON-RPC reverse proxy
tomaka Nov 26, 2023
96aa3a7
Merge branch 'main' into reverse-proxy
tomaka Dec 8, 2023
fea51df
Work in progress
tomaka Dec 8, 2023
bce5f2c
Work in progress
tomaka Dec 8, 2023
03e79a9
Work in progress
tomaka Dec 8, 2023
e706e58
Merge branch 'main' into reverse-proxy
tomaka Dec 27, 2023
803953f
Work in progress
tomaka Dec 27, 2023
65153db
Work in progress
tomaka Dec 27, 2023
febc241
Merge branch 'main' into reverse-proxy
tomaka Jan 3, 2024
3c39183
Merge branch 'main' into reverse-proxy
tomaka Feb 5, 2024
a172965
Start work on a client sanitizer
tomaka Feb 5, 2024
d3b0ecf
Try yet again a different approach
tomaka Feb 7, 2024
5261aa9
More work
tomaka Feb 7, 2024
76b945f
WIP
tomaka Feb 8, 2024
0bb35f7
WIP
tomaka Feb 8, 2024
37f6ccf
WIP
tomaka Feb 8, 2024
828507a
It compiles
tomaka Feb 8, 2024
3f98f38
WIP
tomaka Feb 8, 2024
3e4f2f5
WIP
tomaka Feb 9, 2024
768914c
WIP
tomaka Feb 9, 2024
b2fcbf4
Deny some requests and fix watching transactions
tomaka Feb 10, 2024
b056ec2
Remove client sanitizer idea
tomaka Feb 10, 2024
332ac38
Use Arc<str> for subscription IDs
tomaka Feb 10, 2024
ff15d2e
WIP
tomaka Feb 10, 2024
b26a3fe
WIP
tomaka Feb 11, 2024
1610018
Merge branch 'main' into reverse-proxy
tomaka Mar 18, 2024
a0ca8c8
Merge branch 'main' into reverse-proxy
tomaka Apr 9, 2024
38d35d9
Merge branch 'main' into reverse-proxy
tomaka Apr 22, 2024
5983af6
Update after JSON-RPC functions renames
tomaka Apr 22, 2024
11faa7c
Add support for transaction_broadcast
tomaka Apr 22, 2024
02a7c16
Fix light client compilation
tomaka Apr 22, 2024
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
3 changes: 3 additions & 0 deletions lib/src/json_rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@

// TODO: write docs about usage ^

pub mod clients_multiplexer;
pub mod methods;
pub mod parse;
pub mod payment_info;
// TODO: uncomment or remove module altogether pub mod reverse_proxy;
pub mod servers_multiplexer;
pub mod service;
Loading