example.config.toml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. [info]
  2. url = "https://mint.thesimplekid.dev/"
  3. listen_host = "127.0.0.1"
  4. listen_port = 8085
  5. mnemonic = ""
  6. # input_fee_ppk = 0
  7. # enable_swagger_ui = false
  8. [info.http_cache]
  9. backend = "redis"
  10. ttl = 60
  11. tti = 60
  12. key_prefix = "mintd"
  13. connection_string = "redis://localhost"
  14. [mint_info]
  15. # name = "cdk-mintd mutiney net mint"
  16. # Hex pubkey of mint
  17. # pubkey = ""
  18. # description = "These are not real sats for testing only"
  19. # description_long = "A longer mint for testing"
  20. # motd = "Hello world"
  21. # icon_url = "https://this-is-a-mint-icon-url.com/icon.png"
  22. # contact_email = "hello@cashu.me"
  23. # Nostr pubkey of mint (Hex)
  24. # contact_nostr_public_key = ""
  25. [database]
  26. # Database engine (sqlite/redb) defaults to sqlite
  27. # engine = "sqlite"
  28. [ln]
  29. # Required ln backend `cln`, `lnd`, `strike`, `fakewallet`, 'lnbits', 'phoenixd'
  30. ln_backend = "cln"
  31. # For 'phoenixd' backend, also specify fee_percent (% fee of the ln payment that mint will put in the melt quote) and reserve_fee_min (absolute amount-higher of fee_percent or reserve_fee_min is the fee reserve).
  32. # fee_percent=0.04
  33. # reserve_fee_min=4
  34. [cln]
  35. #Required if using cln backend path to rpc
  36. cln_path = ""
  37. rpc_path = ""
  38. fee_percent = 0.02
  39. reserve_fee_min = 1
  40. # [strike]
  41. # For the Webhook subscription, the url under [info] must be a valid, absolute, non-local, https url
  42. # api_key=""
  43. # Optional default sats
  44. # supported_units=[""]
  45. # [lnbits]
  46. # admin_api_key = ""
  47. # invoice_api_key = ""
  48. # lnbits_api = ""
  49. # [phoenixd]
  50. # api_password = ""
  51. # api_url = ""
  52. # [lnd]
  53. # address = ""
  54. # macaroon_file = ""
  55. # cert_file = ""
  56. # [fake_wallet]
  57. # supported_units = ["sat"]
  58. # fee_percent = 0.02
  59. # reserve_fee_min = 1
  60. # min_delay_time = 1
  61. # max_delay_time = 3