Skip to content

Commit fd22670

Browse files
committed
initialize client
1 parent f6ccd63 commit fd22670

File tree

6 files changed

+555
-0
lines changed

6 files changed

+555
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,8 @@ target
1919
# and can be added to the global gitignore or merged into this file. For a more nuclear
2020
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
2121
#.idea/
22+
23+
24+
# Added by cargo
25+
26+
/target

Cargo.lock

Lines changed: 332 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
name = "bdk-rpc-client"
3+
version = "0.1.0"
4+
edition = "2024"
5+
6+
[dependencies]
7+
corepc-types = { version = "0.10.1", features = ["default"]}
8+
jsonrpc = { version = "0.18.0", features = ["simple_http", "simple_tcp", "minreq_http", "simple_uds", "proxy"] }
9+

0 commit comments

Comments
 (0)