Documentation ¶
Index ¶
- Constants
- type BalancesResponse
- type Channel
- type CloseChannelRequest
- type CloseChannelResponse
- type ConnectPeerRequest
- type LNClient
- type LightningBalanceResponse
- type NetworkGraphResponse
- type NodeConnectionInfo
- type NodeInfo
- type NodeStatus
- type OnchainBalanceResponse
- type OpenChannelRequest
- type OpenChannelResponse
- type PayInvoiceResponse
- type PeerDetails
- type TLVRecord
- type Transaction
- type UpdateChannelRequest
Constants ¶
View Source
const DEFAULT_INVOICE_EXPIRY = 86400
default invoice expiry in seconds (1 day)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BalancesResponse ¶
type BalancesResponse struct { Onchain OnchainBalanceResponse `json:"onchain"` Lightning LightningBalanceResponse `json:"lightning"` }
type Channel ¶
type Channel struct { LocalBalance int64 `json:"localBalance"` LocalSpendableBalance int64 `json:"localSpendableBalance"` RemoteBalance int64 `json:"remoteBalance"` Id string `json:"id"` RemotePubkey string `json:"remotePubkey"` FundingTxId string `json:"fundingTxId"` Active bool `json:"active"` Public bool `json:"public"` InternalChannel interface{} `json:"internalChannel"` Confirmations *uint32 `json:"confirmations"` ConfirmationsRequired *uint32 `json:"confirmationsRequired"` ForwardingFeeBaseMsat uint32 `json:"forwardingFeeBaseMsat"` UnspendablePunishmentReserve uint64 `json:"unspendablePunishmentReserve"` CounterpartyUnspendablePunishmentReserve uint64 `json:"counterpartyUnspendablePunishmentReserve"` }
type CloseChannelRequest ¶
type CloseChannelResponse ¶
type CloseChannelResponse struct { }
type ConnectPeerRequest ¶
type LNClient ¶
type LNClient interface { SendPaymentSync(ctx context.Context, payReq string) (*PayInvoiceResponse, error) SendKeysend(ctx context.Context, amount uint64, destination, preimage string, customRecords []TLVRecord) (preImage string, err error) GetBalance(ctx context.Context) (balance int64, err error) GetInfo(ctx context.Context) (info *NodeInfo, err error) MakeInvoice(ctx context.Context, amount int64, description string, descriptionHash string, expiry int64) (transaction *Transaction, err error) LookupInvoice(ctx context.Context, paymentHash string) (transaction *Transaction, err error) ListTransactions(ctx context.Context, from, until, limit, offset uint64, unpaid bool, invoiceType string) (transactions []Transaction, err error) Shutdown() error ListChannels(ctx context.Context) (channels []Channel, err error) GetNodeConnectionInfo(ctx context.Context) (nodeConnectionInfo *NodeConnectionInfo, err error) GetNodeStatus(ctx context.Context) (nodeStatus *NodeStatus, err error) ConnectPeer(ctx context.Context, connectPeerRequest *ConnectPeerRequest) error OpenChannel(ctx context.Context, openChannelRequest *OpenChannelRequest) (*OpenChannelResponse, error) CloseChannel(ctx context.Context, closeChannelRequest *CloseChannelRequest) (*CloseChannelResponse, error) UpdateChannel(ctx context.Context, updateChannelRequest *UpdateChannelRequest) error DisconnectPeer(ctx context.Context, peerId string) error GetNewOnchainAddress(ctx context.Context) (string, error) ResetRouter(key string) error GetOnchainBalance(ctx context.Context) (*OnchainBalanceResponse, error) GetBalances(ctx context.Context) (*BalancesResponse, error) RedeemOnchainFunds(ctx context.Context, toAddress string) (txId string, err error) SendPaymentProbes(ctx context.Context, invoice string) error SendSpontaneousPaymentProbes(ctx context.Context, amountMsat uint64, nodeId string) error ListPeers(ctx context.Context) ([]PeerDetails, error) GetLogOutput(ctx context.Context, maxLen int) ([]byte, error) SignMessage(ctx context.Context, message string) (string, error) GetStorageDir() (string, error) GetNetworkGraph(nodeIds []string) (NetworkGraphResponse, error) UpdateLastWalletSyncRequest() GetSupportedNIP47Methods() []string GetSupportedNIP47NotificationTypes() []string }
type LightningBalanceResponse ¶
type LightningBalanceResponse struct { TotalSpendable int64 `json:"totalSpendable"` TotalReceivable int64 `json:"totalReceivable"` NextMaxSpendable int64 `json:"nextMaxSpendable"` NextMaxReceivable int64 `json:"nextMaxReceivable"` NextMaxSpendableMPP int64 `json:"nextMaxSpendableMPP"` NextMaxReceivableMPP int64 `json:"nextMaxReceivableMPP"` }
type NetworkGraphResponse ¶
type NetworkGraphResponse = interface{}
type NodeConnectionInfo ¶
type NodeStatus ¶
type NodeStatus struct {
InternalNodeStatus interface{} `json:"internalNodeStatus"`
}
type OnchainBalanceResponse ¶
type OpenChannelRequest ¶
type OpenChannelResponse ¶
type OpenChannelResponse struct {
FundingTxId string `json:"fundingTxId"`
}
type PayInvoiceResponse ¶
type PeerDetails ¶
type Transaction ¶
type Transaction struct { Type string `json:"type"` Invoice string `json:"invoice"` Description string `json:"description"` DescriptionHash string `json:"description_hash"` Preimage string `json:"preimage"` PaymentHash string `json:"payment_hash"` Amount int64 `json:"amount"` FeesPaid int64 `json:"fees_paid"` CreatedAt int64 `json:"created_at"` ExpiresAt *int64 `json:"expires_at"` SettledAt *int64 `json:"settled_at"` Metadata interface{} `json:"metadata,omitempty"` }
TODO: use uint for fields that cannot be negative
type UpdateChannelRequest ¶
Click to show internal directories.
Click to hide internal directories.