Skip to content

Commit 9b2ef2d

Browse files
committed
Add a lightning-dns-resolver crate which answers bLIP 32 queries
When a lightning node wishes to send payments to a BIP 353 human readable name (using BOLT 12), it first has to resolve that name to a DNS TXT record. bLIP 32 defines a way to do so over onion messages, and this completes our implementation thereof by adding the server side. It operates by simply accepting new messages and spawning tokio tasks to do DNS lookups using the `dnsse_prover` crate. It also contains full end-to-end tests of the BIP 353 -> BOLT 12 -> payment logic using the new server code to do the resolution. Note that because we now have a workspace crate which sets the "lightning/dnssec" feature in its `dev-dependencies`, a naive `cargo test` will test the "dnssec" feature.
1 parent 70ff51d commit 9b2ef2d

File tree

7 files changed

+431
-6
lines changed

7 files changed

+431
-6
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ lightning/net_graph-*.bin
1212
lightning-rapid-gossip-sync/res/full_graph.lngossip
1313
lightning-custom-message/target
1414
lightning-transaction-sync/target
15+
lightning-dns-resolver/target
1516
no-std-check/target
1617
msrv-no-dev-deps-check/target

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ members = [
1414
"lightning-rapid-gossip-sync",
1515
"lightning-custom-message",
1616
"lightning-transaction-sync",
17+
"lightning-dns-resolver",
1718
"possiblyrandom",
1819
]
1920

ci/ci-tests.sh

+1-4
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ WORKSPACE_MEMBERS=(
4646
lightning-rapid-gossip-sync
4747
lightning-custom-message
4848
lightning-transaction-sync
49+
lightning-dns-resolver
4950
possiblyrandom
5051
)
5152

@@ -56,10 +57,6 @@ for DIR in "${WORKSPACE_MEMBERS[@]}"; do
5657
cargo doc -p "$DIR" --document-private-items
5758
done
5859

59-
echo -e "\n\nChecking and testing lightning crate with dnssec feature"
60-
cargo test -p lightning --verbose --color always --features dnssec
61-
cargo check -p lightning --verbose --color always --features dnssec
62-
6360
echo -e "\n\nChecking and testing Block Sync Clients with features"
6461

6562
cargo test -p lightning-block-sync --verbose --color always --features rest-client

lightning-dns-resolver/Cargo.toml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[package]
2+
name = "lightning-resolver"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[dependencies]
7+
lightning = { version = "0.0.124-rc1", path = "../lightning", default-features = false }
8+
dnssec-prover = { version = "0.6", default-features = false, features = [ "std", "tokio" ] }
9+
tokio = { version = "1.0", default-features = false, features = ["rt"] }
10+
11+
[dev-dependencies]
12+
bitcoin = { version = "0.32" }
13+
tokio = { version = "1.0", default-features = false, features = ["macros", "time"] }
14+
lightning = { version = "0.0.124-rc1", path = "../lightning", features = ["dnssec", "_test_utils"] }

0 commit comments

Comments
 (0)