-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #128 from Kodylow/strike-client
feat: add strike client for lightning backend
- Loading branch information
Showing
7 changed files
with
352 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,17 +29,24 @@ MINT_INFO_CONTACT=[["email","[email protected]"]] | |
LIGHTNING_FEE_PERCENT=1.0 | ||
LIGHTNING_RESERVE_FEE_MIN=4000 | ||
|
||
# configure the lightning backend. Valid values are Lnbits and Lnd. If Lnbits is configured all variables starting with LNBITS_ are required. | ||
# If Lnd is configured all variables starting with LND_ are required. | ||
# configure the lightning backend. | ||
# currently supported backends are: | ||
# - Lnbits | ||
# - Alby | ||
# - Strike | ||
# - Lnd | ||
# you are required to set the corresponding environment variables for the backend you want to use | ||
MINT_LIGHTNING_BACKEND=Lnbits | ||
#MINT_LIGHTNING_BACKEND=Lnd | ||
|
||
|
||
LNBITS_URL=https://legend.lnbits.com | ||
LNBITS_ADMIN_KEY=YOUR_ADMIN_KEY | ||
|
||
#MINT_LIGHTNING_BACKEND=Alby | ||
ALBY_API_KEY=YOUR_API_KEY | ||
|
||
#MINT_LIGHTNING_BACKEND=Strike | ||
STRIKE_API_KEY=YOUR_API_KEY | ||
|
||
#MINT_LIGHTNING_BACKEND=Lnd | ||
# absolute path to the lnd macaroon file | ||
LND_MACAROON_PATH="/.../admin.macaroon" | ||
# absolute path to the tls certificate | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.