example.config.toml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. # memory or redis
  10. backend = "memory"
  11. ttl = 60
  12. tti = 60
  13. # `key_prefix` and `connection_string` required for redis
  14. # key_prefix = "mintd"
  15. # connection_string = "redis://localhost"
  16. [mint_info]
  17. # name = "cdk-mintd mutiney net mint"
  18. # Hex pubkey of mint
  19. # pubkey = ""
  20. # description = "These are not real sats for testing only"
  21. # description_long = "A longer mint for testing"
  22. # motd = "Hello world"
  23. # icon_url = "https://this-is-a-mint-icon-url.com/icon.png"
  24. # contact_email = "hello@cashu.me"
  25. # Nostr pubkey of mint (Hex)
  26. # contact_nostr_public_key = ""
  27. [database]
  28. # Database engine (sqlite/redb) defaults to sqlite
  29. # engine = "sqlite"
  30. [ln]
  31. # Required ln backend `cln`, `lnd`, `strike`, `fakewallet`, 'lnbits', 'phoenixd'
  32. ln_backend = "cln"
  33. # min_mint=1
  34. # max_mint=500000
  35. # min_melt=1
  36. # max_melt=500000
  37. [cln]
  38. #Required if using cln backend path to rpc
  39. cln_path = ""
  40. rpc_path = ""
  41. fee_percent = 0.04
  42. reserve_fee_min = 4
  43. # [strike]
  44. # For the Webhook subscription, the url under [info] must be a valid, absolute, non-local, https url
  45. # api_key=""
  46. # Optional default sats
  47. # supported_units=[""]
  48. # fee_percent=0.04
  49. # reserve_fee_min=4
  50. # [lnbits]
  51. # admin_api_key = ""
  52. # invoice_api_key = ""
  53. # lnbits_api = ""
  54. # fee_percent=0.04
  55. # reserve_fee_min=4
  56. # [phoenixd]
  57. # 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).
  58. # api_password = ""
  59. # api_url = ""
  60. # fee_percent=0.05
  61. # reserve_fee_min=4
  62. # [lnd]
  63. # address = ""
  64. # macaroon_file = ""
  65. # cert_file = ""
  66. # fee_percent=0.04
  67. # reserve_fee_min=4
  68. # [fake_wallet]
  69. # supported_units = ["sat"]
  70. # fee_percent = 0.02
  71. # reserve_fee_min = 1
  72. # min_delay_time = 1
  73. # max_delay_time = 3