mirror of
https://github.com/Retropex/bitfeed.git
synced 2025-05-12 19:20:46 +02:00
11 lines
324 B
Elixir
11 lines
324 B
Elixir
defmodule Bitcoinex.LightningNetwork do
|
|
@moduledoc """
|
|
Includes serialization and validation for Lightning Network BOLT#11 invoices.
|
|
"""
|
|
|
|
alias Bitcoinex.LightningNetwork.Invoice
|
|
|
|
# defdelegate encode_invoice(invoice), to: Invoice, as: :encode
|
|
defdelegate decode_invoice(invoice), to: Invoice, as: :decode
|
|
end
|