mirror of
https://github.com/getAlby/lndhub.go.git
synced 2025-12-20 14:14:47 +01:00
21 lines
482 B
Go
21 lines
482 B
Go
package common
|
|
|
|
const (
|
|
InvoiceTypeOutgoing = "outgoing"
|
|
InvoiceTypePaid = "paid_invoice"
|
|
InvoiceTypeIncoming = "incoming"
|
|
InvoiceTypeUser = "user_invoice"
|
|
|
|
InvoiceStateSettled = "settled"
|
|
InvoiceStateInitialized = "initialized"
|
|
InvoiceStateOpen = "open"
|
|
InvoiceStateError = "error"
|
|
|
|
AccountTypeIncoming = "incoming"
|
|
AccountTypeCurrent = "current"
|
|
AccountTypeOutgoing = "outgoing"
|
|
AccountTypeFees = "fees"
|
|
|
|
DestinationPubkeyHexSize = 66
|
|
)
|