* Link to guide if exists * Add LNbits guide * Update id to LNbits guide also update guide and add id to ADMIN_ITEMS for perpetual edits * Use button instead of link This fixes following console warning: > Warning: validateDOMNesting(...): <a> cannot appear as a descendant of <a>. * Fix alignment * Fix wrong mention of super user requirement * Move guideUrl to wallets.json
30 lines
439 B
Markdown
30 lines
439 B
Markdown
For testing LND gRPC as an receiving wallet protocol, you'll need a macaroon and the cert.
|
|
|
|
# host and port
|
|
|
|
`lnd:10009`
|
|
|
|
## host and port (onion)
|
|
|
|
To get the onion address run this command:
|
|
|
|
```bash
|
|
sndev onion lnd
|
|
```
|
|
|
|
Then use port 10009 on the onion address.
|
|
|
|
# generate macaroon
|
|
|
|
```bash
|
|
sndev cli lnd -n regtest bakemacaroon invoices:write invoices:read
|
|
```
|
|
|
|
# get cert
|
|
|
|
To get the cert run this command:
|
|
|
|
```bash
|
|
sndev cert lnd
|
|
```
|