example.config.toml 2.1 KB

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