data

package
v0.0.0-...-3bb28d7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 7, 2024 License: GPL-3.0 Imports: 8 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	SwapError_name = map[int32]string{
		0: "NO_ERROR",
		1: "FUNDS_EXCEED_LIMIT",
		2: "TX_TOO_SMALL",
		3: "INVOICE_AMOUNT_MISMATCH",
		4: "SWAP_EXPIRED",
	}
	SwapError_value = map[string]int32{
		"NO_ERROR":                0,
		"FUNDS_EXCEED_LIMIT":      1,
		"TX_TOO_SMALL":            2,
		"INVOICE_AMOUNT_MISMATCH": 3,
		"SWAP_EXPIRED":            4,
	}
)

Enum value maps for SwapError.

View Source
var (
	Account_AccountStatus_name = map[int32]string{
		0: "DISCONNECTED",
		1: "PROCESSING_CONNECTION",
		2: "CLOSING_CONNECTION",
		3: "CONNECTED",
	}
	Account_AccountStatus_value = map[string]int32{
		"DISCONNECTED":          0,
		"PROCESSING_CONNECTION": 1,
		"CLOSING_CONNECTION":    2,
		"CONNECTED":             3,
	}
)

Enum value maps for Account_AccountStatus.

View Source
var (
	Payment_PaymentType_name = map[int32]string{
		0: "DEPOSIT",
		1: "WITHDRAWAL",
		2: "SENT",
		3: "RECEIVED",
		4: "CLOSED_CHANNEL",
	}
	Payment_PaymentType_value = map[string]int32{
		"DEPOSIT":        0,
		"WITHDRAWAL":     1,
		"SENT":           2,
		"RECEIVED":       3,
		"CLOSED_CHANNEL": 4,
	}
)

Enum value maps for Payment_PaymentType.

View Source
var (
	NotificationEvent_NotificationType_name = map[int32]string{
		0:  "READY",
		1:  "INITIALIZATION_FAILED",
		2:  "ACCOUNT_CHANGED",
		3:  "PAYMENT_SENT",
		4:  "INVOICE_PAID",
		5:  "LIGHTNING_SERVICE_DOWN",
		6:  "FUND_ADDRESS_CREATED",
		7:  "FUND_ADDRESS_UNSPENT_CHANGED",
		8:  "BACKUP_SUCCESS",
		9:  "BACKUP_FAILED",
		10: "BACKUP_AUTH_FAILED",
		11: "BACKUP_NODE_CONFLICT",
		12: "BACKUP_REQUEST",
		13: "PAYMENT_FAILED",
		14: "PAYMENT_SUCCEEDED",
		15: "REVERSE_SWAP_CLAIM_STARTED",
		16: "REVERSE_SWAP_CLAIM_SUCCEEDED",
		17: "REVERSE_SWAP_CLAIM_FAILED",
		18: "REVERSE_SWAP_CLAIM_CONFIRMED",
		19: "LSP_CHANNEL_OPENED",
		20: "BACKUP_NOT_LATEST_CONFLICT",
	}
	NotificationEvent_NotificationType_value = map[string]int32{
		"READY":                        0,
		"INITIALIZATION_FAILED":        1,
		"ACCOUNT_CHANGED":              2,
		"PAYMENT_SENT":                 3,
		"INVOICE_PAID":                 4,
		"LIGHTNING_SERVICE_DOWN":       5,
		"FUND_ADDRESS_CREATED":         6,
		"FUND_ADDRESS_UNSPENT_CHANGED": 7,
		"BACKUP_SUCCESS":               8,
		"BACKUP_FAILED":                9,
		"BACKUP_AUTH_FAILED":           10,
		"BACKUP_NODE_CONFLICT":         11,
		"BACKUP_REQUEST":               12,
		"PAYMENT_FAILED":               13,
		"PAYMENT_SUCCEEDED":            14,
		"REVERSE_SWAP_CLAIM_STARTED":   15,
		"REVERSE_SWAP_CLAIM_SUCCEEDED": 16,
		"REVERSE_SWAP_CLAIM_FAILED":    17,
		"REVERSE_SWAP_CLAIM_CONFIRMED": 18,
		"LSP_CHANNEL_OPENED":           19,
		"BACKUP_NOT_LATEST_CONFLICT":   20,
	}
)

Enum value maps for NotificationEvent_NotificationType.

View Source
var BreezAPI_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "data.BreezAPI",
	HandlerType: (*BreezAPIServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetLSPList",
			Handler:    _BreezAPI_GetLSPList_Handler,
		},
		{
			MethodName: "ConnectToLSP",
			Handler:    _BreezAPI_ConnectToLSP_Handler,
		},
		{
			MethodName: "AddFundInit",
			Handler:    _BreezAPI_AddFundInit_Handler,
		},
		{
			MethodName: "GetFundStatus",
			Handler:    _BreezAPI_GetFundStatus_Handler,
		},
		{
			MethodName: "AddInvoice",
			Handler:    _BreezAPI_AddInvoice_Handler,
		},
		{
			MethodName: "PayInvoice",
			Handler:    _BreezAPI_PayInvoice_Handler,
		},
		{
			MethodName: "RestartDaemon",
			Handler:    _BreezAPI_RestartDaemon_Handler,
		},
		{
			MethodName: "ListPayments",
			Handler:    _BreezAPI_ListPayments_Handler,
		},
		{
			MethodName: "CloseChannels",
			Handler:    _BreezAPI_CloseChannels_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "messages.proto",
}

BreezAPI_ServiceDesc is the grpc.ServiceDesc for BreezAPI service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_messages_proto protoreflect.FileDescriptor

Functions

func RegisterBreezAPIServer

func RegisterBreezAPIServer(s grpc.ServiceRegistrar, srv BreezAPIServer)

Types

type Account

type Account struct {
	Id            string                `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Balance       int64                 `protobuf:"varint,2,opt,name=balance,proto3" json:"balance,omitempty"`
	WalletBalance int64                 `protobuf:"varint,3,opt,name=walletBalance,proto3" json:"walletBalance,omitempty"`
	Status        Account_AccountStatus `protobuf:"varint,4,opt,name=status,proto3,enum=data.Account_AccountStatus" json:"status,omitempty"`
	// maximum payment this node can receive via lightning
	MaxAllowedToReceive int64 `protobuf:"varint,5,opt,name=maxAllowedToReceive,proto3" json:"maxAllowedToReceive,omitempty"`
	// maximum payment this node can pay via lightning
	MaxAllowedToPay int64 `protobuf:"varint,6,opt,name=maxAllowedToPay,proto3" json:"maxAllowedToPay,omitempty"`
	// The lightning absolute payment amount
	MaxPaymentAmount int64 `protobuf:"varint,7,opt,name=maxPaymentAmount,proto3" json:"maxPaymentAmount,omitempty"`
	// The routing node fee as reflected in the node policy
	RoutingNodeFee int64 `protobuf:"varint,8,opt,name=routingNodeFee,proto3" json:"routingNodeFee,omitempty"`
	// the state of the account, if not enabled then no automatic
	// attempt to open a channel with breez node will be made.
	Enabled bool `protobuf:"varint,9,opt,name=enabled,proto3" json:"enabled,omitempty"`
	// maximum chan reserve accross all channels of this account.
	MaxChanReserve int64 `protobuf:"varint,10,opt,name=maxChanReserve,proto3" json:"maxChanReserve,omitempty"`
	// The funding transaction id of the channel.
	ChannelPoint string `protobuf:"bytes,11,opt,name=channelPoint,proto3" json:"channelPoint,omitempty"`
	// reflects if this account can receive/send payments.
	ReadyForPayments bool `protobuf:"varint,12,opt,name=readyForPayments,proto3" json:"readyForPayments,omitempty"`
	// the last known block height.
	TipHeight int64 `protobuf:"varint,13,opt,name=tipHeight,proto3" json:"tipHeight,omitempty"`
	// public keys of peers this account is connected to.
	ConnectedPeers []string `protobuf:"bytes,14,rep,name=connectedPeers,proto3" json:"connectedPeers,omitempty"`
	// The max amount this node can receive without opening a new channel
	MaxInboundLiquidity int64    `protobuf:"varint,15,opt,name=max_inbound_liquidity,json=maxInboundLiquidity,proto3" json:"max_inbound_liquidity,omitempty"`
	UnconfirmedChannels []string `protobuf:"bytes,16,rep,name=unconfirmed_channels,json=unconfirmedChannels,proto3" json:"unconfirmed_channels,omitempty"`
	// contains filtered or unexported fields
}

func (*Account) Descriptor deprecated

func (*Account) Descriptor() ([]byte, []int)

Deprecated: Use Account.ProtoReflect.Descriptor instead.

func (*Account) GetBalance

func (x *Account) GetBalance() int64

func (*Account) GetChannelPoint

func (x *Account) GetChannelPoint() string

func (*Account) GetConnectedPeers

func (x *Account) GetConnectedPeers() []string

func (*Account) GetEnabled

func (x *Account) GetEnabled() bool

func (*Account) GetId

func (x *Account) GetId() string

func (*Account) GetMaxAllowedToPay

func (x *Account) GetMaxAllowedToPay() int64

func (*Account) GetMaxAllowedToReceive

func (x *Account) GetMaxAllowedToReceive() int64

func (*Account) GetMaxChanReserve

func (x *Account) GetMaxChanReserve() int64

func (*Account) GetMaxInboundLiquidity

func (x *Account) GetMaxInboundLiquidity() int64

func (*Account) GetMaxPaymentAmount

func (x *Account) GetMaxPaymentAmount() int64

func (*Account) GetReadyForPayments

func (x *Account) GetReadyForPayments() bool

func (*Account) GetRoutingNodeFee

func (x *Account) GetRoutingNodeFee() int64

func (*Account) GetStatus

func (x *Account) GetStatus() Account_AccountStatus

func (*Account) GetTipHeight

func (x *Account) GetTipHeight() int64

func (*Account) GetUnconfirmedChannels

func (x *Account) GetUnconfirmedChannels() []string

func (*Account) GetWalletBalance

func (x *Account) GetWalletBalance() int64

func (*Account) ProtoMessage

func (*Account) ProtoMessage()

func (*Account) ProtoReflect

func (x *Account) ProtoReflect() protoreflect.Message

func (*Account) Reset

func (x *Account) Reset()

func (*Account) String

func (x *Account) String() string

type Account_AccountStatus

type Account_AccountStatus int32
const (
	Account_DISCONNECTED          Account_AccountStatus = 0
	Account_PROCESSING_CONNECTION Account_AccountStatus = 1
	Account_CLOSING_CONNECTION    Account_AccountStatus = 2
	Account_CONNECTED             Account_AccountStatus = 3
)

func (Account_AccountStatus) Descriptor

func (Account_AccountStatus) Enum

func (Account_AccountStatus) EnumDescriptor deprecated

func (Account_AccountStatus) EnumDescriptor() ([]byte, []int)

Deprecated: Use Account_AccountStatus.Descriptor instead.

func (Account_AccountStatus) Number

func (Account_AccountStatus) String

func (x Account_AccountStatus) String() string

func (Account_AccountStatus) Type

type AddFundError

type AddFundError struct {
	SwapAddressInfo *SwapAddressInfo `protobuf:"bytes,1,opt,name=swapAddressInfo,proto3" json:"swapAddressInfo,omitempty"`
	HoursToUnlock   float32          `protobuf:"fixed32,2,opt,name=hoursToUnlock,proto3" json:"hoursToUnlock,omitempty"`
	// contains filtered or unexported fields
}

func (*AddFundError) Descriptor deprecated

func (*AddFundError) Descriptor() ([]byte, []int)

Deprecated: Use AddFundError.ProtoReflect.Descriptor instead.

func (*AddFundError) GetHoursToUnlock

func (x *AddFundError) GetHoursToUnlock() float32

func (*AddFundError) GetSwapAddressInfo

func (x *AddFundError) GetSwapAddressInfo() *SwapAddressInfo

func (*AddFundError) ProtoMessage

func (*AddFundError) ProtoMessage()

func (*AddFundError) ProtoReflect

func (x *AddFundError) ProtoReflect() protoreflect.Message

func (*AddFundError) Reset

func (x *AddFundError) Reset()

func (*AddFundError) String

func (x *AddFundError) String() string

type AddFundInitReply

type AddFundInitReply struct {
	Address           string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	MaxAllowedDeposit int64  `protobuf:"varint,2,opt,name=maxAllowedDeposit,proto3" json:"maxAllowedDeposit,omitempty"`
	ErrorMessage      string `protobuf:"bytes,3,opt,name=errorMessage,proto3" json:"errorMessage,omitempty"`
	BackupJson        string `protobuf:"bytes,4,opt,name=backupJson,proto3" json:"backupJson,omitempty"`
	RequiredReserve   int64  `protobuf:"varint,5,opt,name=requiredReserve,proto3" json:"requiredReserve,omitempty"`
	MinAllowedDeposit int64  `protobuf:"varint,6,opt,name=minAllowedDeposit,proto3" json:"minAllowedDeposit,omitempty"`
	// contains filtered or unexported fields
}

func (*AddFundInitReply) Descriptor deprecated

func (*AddFundInitReply) Descriptor() ([]byte, []int)

Deprecated: Use AddFundInitReply.ProtoReflect.Descriptor instead.

func (*AddFundInitReply) GetAddress

func (x *AddFundInitReply) GetAddress() string

func (*AddFundInitReply) GetBackupJson

func (x *AddFundInitReply) GetBackupJson() string

func (*AddFundInitReply) GetErrorMessage

func (x *AddFundInitReply) GetErrorMessage() string

func (*AddFundInitReply) GetMaxAllowedDeposit

func (x *AddFundInitReply) GetMaxAllowedDeposit() int64

func (*AddFundInitReply) GetMinAllowedDeposit

func (x *AddFundInitReply) GetMinAllowedDeposit() int64

func (*AddFundInitReply) GetRequiredReserve

func (x *AddFundInitReply) GetRequiredReserve() int64

func (*AddFundInitReply) ProtoMessage

func (*AddFundInitReply) ProtoMessage()

func (*AddFundInitReply) ProtoReflect

func (x *AddFundInitReply) ProtoReflect() protoreflect.Message

func (*AddFundInitReply) Reset

func (x *AddFundInitReply) Reset()

func (*AddFundInitReply) String

func (x *AddFundInitReply) String() string

type AddFundInitRequest

type AddFundInitRequest struct {
	NotificationToken string            `protobuf:"bytes,1,opt,name=notificationToken,proto3" json:"notificationToken,omitempty"`
	LspID             string            `protobuf:"bytes,2,opt,name=lspID,proto3" json:"lspID,omitempty"`
	OpeningFeeParams  *OpeningFeeParams `protobuf:"bytes,3,opt,name=opening_fee_params,json=openingFeeParams,proto3" json:"opening_fee_params,omitempty"`
	// contains filtered or unexported fields
}

func (*AddFundInitRequest) Descriptor deprecated

func (*AddFundInitRequest) Descriptor() ([]byte, []int)

Deprecated: Use AddFundInitRequest.ProtoReflect.Descriptor instead.

func (*AddFundInitRequest) GetLspID

func (x *AddFundInitRequest) GetLspID() string

func (*AddFundInitRequest) GetNotificationToken

func (x *AddFundInitRequest) GetNotificationToken() string

func (*AddFundInitRequest) GetOpeningFeeParams

func (x *AddFundInitRequest) GetOpeningFeeParams() *OpeningFeeParams

func (*AddFundInitRequest) ProtoMessage

func (*AddFundInitRequest) ProtoMessage()

func (*AddFundInitRequest) ProtoReflect

func (x *AddFundInitRequest) ProtoReflect() protoreflect.Message

func (*AddFundInitRequest) Reset

func (x *AddFundInitRequest) Reset()

func (*AddFundInitRequest) String

func (x *AddFundInitRequest) String() string

type AddFundReply

type AddFundReply struct {
	ErrorMessage string `protobuf:"bytes,1,opt,name=errorMessage,proto3" json:"errorMessage,omitempty"`
	// contains filtered or unexported fields
}

func (*AddFundReply) Descriptor deprecated

func (*AddFundReply) Descriptor() ([]byte, []int)

Deprecated: Use AddFundReply.ProtoReflect.Descriptor instead.

func (*AddFundReply) GetErrorMessage

func (x *AddFundReply) GetErrorMessage() string

func (*AddFundReply) ProtoMessage

func (*AddFundReply) ProtoMessage()

func (*AddFundReply) ProtoReflect

func (x *AddFundReply) ProtoReflect() protoreflect.Message

func (*AddFundReply) Reset

func (x *AddFundReply) Reset()

func (*AddFundReply) String

func (x *AddFundReply) String() string

type AddInvoiceReply

type AddInvoiceReply struct {
	PaymentRequest string `protobuf:"bytes,1,opt,name=paymentRequest,proto3" json:"paymentRequest,omitempty"`
	LspFee         int64  `protobuf:"varint,2,opt,name=lsp_fee,json=lspFee,proto3" json:"lsp_fee,omitempty"`
	// contains filtered or unexported fields
}

func (*AddInvoiceReply) Descriptor deprecated

func (*AddInvoiceReply) Descriptor() ([]byte, []int)

Deprecated: Use AddInvoiceReply.ProtoReflect.Descriptor instead.

func (*AddInvoiceReply) GetLspFee

func (x *AddInvoiceReply) GetLspFee() int64

func (*AddInvoiceReply) GetPaymentRequest

func (x *AddInvoiceReply) GetPaymentRequest() string

func (*AddInvoiceReply) ProtoMessage

func (*AddInvoiceReply) ProtoMessage()

func (*AddInvoiceReply) ProtoReflect

func (x *AddInvoiceReply) ProtoReflect() protoreflect.Message

func (*AddInvoiceReply) Reset

func (x *AddInvoiceReply) Reset()

func (*AddInvoiceReply) String

func (x *AddInvoiceReply) String() string

type AddInvoiceRequest

type AddInvoiceRequest struct {
	InvoiceDetails   *InvoiceMemo      `protobuf:"bytes,1,opt,name=invoiceDetails,proto3" json:"invoiceDetails,omitempty"`
	LspInfo          *LSPInformation   `protobuf:"bytes,2,opt,name=lspInfo,proto3" json:"lspInfo,omitempty"`
	OpeningFeeParams *OpeningFeeParams `protobuf:"bytes,3,opt,name=opening_fee_params,json=openingFeeParams,proto3" json:"opening_fee_params,omitempty"`
	// contains filtered or unexported fields
}

func (*AddInvoiceRequest) Descriptor deprecated

func (*AddInvoiceRequest) Descriptor() ([]byte, []int)

Deprecated: Use AddInvoiceRequest.ProtoReflect.Descriptor instead.

func (*AddInvoiceRequest) GetInvoiceDetails

func (x *AddInvoiceRequest) GetInvoiceDetails() *InvoiceMemo

func (*AddInvoiceRequest) GetLspInfo

func (x *AddInvoiceRequest) GetLspInfo() *LSPInformation

func (*AddInvoiceRequest) GetOpeningFeeParams

func (x *AddInvoiceRequest) GetOpeningFeeParams() *OpeningFeeParams

func (*AddInvoiceRequest) ProtoMessage

func (*AddInvoiceRequest) ProtoMessage()

func (*AddInvoiceRequest) ProtoReflect

func (x *AddInvoiceRequest) ProtoReflect() protoreflect.Message

func (*AddInvoiceRequest) Reset

func (x *AddInvoiceRequest) Reset()

func (*AddInvoiceRequest) String

func (x *AddInvoiceRequest) String() string

type BootstrapFilesRequest

type BootstrapFilesRequest struct {
	WorkingDir string   `protobuf:"bytes,1,opt,name=WorkingDir,proto3" json:"WorkingDir,omitempty"`
	FullPaths  []string `protobuf:"bytes,2,rep,name=FullPaths,proto3" json:"FullPaths,omitempty"`
	// contains filtered or unexported fields
}

func (*BootstrapFilesRequest) Descriptor deprecated

func (*BootstrapFilesRequest) Descriptor() ([]byte, []int)

Deprecated: Use BootstrapFilesRequest.ProtoReflect.Descriptor instead.

func (*BootstrapFilesRequest) GetFullPaths

func (x *BootstrapFilesRequest) GetFullPaths() []string

func (*BootstrapFilesRequest) GetWorkingDir

func (x *BootstrapFilesRequest) GetWorkingDir() string

func (*BootstrapFilesRequest) ProtoMessage

func (*BootstrapFilesRequest) ProtoMessage()

func (*BootstrapFilesRequest) ProtoReflect

func (x *BootstrapFilesRequest) ProtoReflect() protoreflect.Message

func (*BootstrapFilesRequest) Reset

func (x *BootstrapFilesRequest) Reset()

func (*BootstrapFilesRequest) String

func (x *BootstrapFilesRequest) String() string

type BreezAPIClient

type BreezAPIClient interface {
	GetLSPList(ctx context.Context, in *LSPListRequest, opts ...grpc.CallOption) (*LSPList, error)
	ConnectToLSP(ctx context.Context, in *ConnectLSPRequest, opts ...grpc.CallOption) (*ConnectLSPReply, error)
	AddFundInit(ctx context.Context, in *AddFundInitRequest, opts ...grpc.CallOption) (*AddFundInitReply, error)
	GetFundStatus(ctx context.Context, in *FundStatusRequest, opts ...grpc.CallOption) (*FundStatusReply, error)
	AddInvoice(ctx context.Context, in *AddInvoiceRequest, opts ...grpc.CallOption) (*AddInvoiceReply, error)
	PayInvoice(ctx context.Context, in *PayInvoiceRequest, opts ...grpc.CallOption) (*PaymentResponse, error)
	RestartDaemon(ctx context.Context, in *RestartDaemonRequest, opts ...grpc.CallOption) (*RestartDaemonReply, error)
	ListPayments(ctx context.Context, in *ListPaymentsRequest, opts ...grpc.CallOption) (*PaymentsList, error)
	CloseChannels(ctx context.Context, in *CloseChannelsRequest, opts ...grpc.CallOption) (*CloseChannelsReply, error)
}

BreezAPIClient is the client API for BreezAPI service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewBreezAPIClient

func NewBreezAPIClient(cc grpc.ClientConnInterface) BreezAPIClient

type BreezAPIServer

BreezAPIServer is the server API for BreezAPI service. All implementations must embed UnimplementedBreezAPIServer for forward compatibility

type ChainStatus

type ChainStatus struct {
	BlockHeight   uint32 `protobuf:"varint,1,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	SyncedToChain bool   `protobuf:"varint,2,opt,name=syncedToChain,proto3" json:"syncedToChain,omitempty"`
	// contains filtered or unexported fields
}

func (*ChainStatus) Descriptor deprecated

func (*ChainStatus) Descriptor() ([]byte, []int)

Deprecated: Use ChainStatus.ProtoReflect.Descriptor instead.

func (*ChainStatus) GetBlockHeight

func (x *ChainStatus) GetBlockHeight() uint32

func (*ChainStatus) GetSyncedToChain

func (x *ChainStatus) GetSyncedToChain() bool

func (*ChainStatus) ProtoMessage

func (*ChainStatus) ProtoMessage()

func (*ChainStatus) ProtoReflect

func (x *ChainStatus) ProtoReflect() protoreflect.Message

func (*ChainStatus) Reset

func (x *ChainStatus) Reset()

func (*ChainStatus) String

func (x *ChainStatus) String() string

type CheckLSPClosedChannelMismatchRequest

type CheckLSPClosedChannelMismatchRequest struct {
	LspInfo   *LSPInformation `protobuf:"bytes,1,opt,name=lspInfo,proto3" json:"lspInfo,omitempty"`
	ChanPoint string          `protobuf:"bytes,2,opt,name=chanPoint,proto3" json:"chanPoint,omitempty"`
	// contains filtered or unexported fields
}

func (*CheckLSPClosedChannelMismatchRequest) Descriptor deprecated

func (*CheckLSPClosedChannelMismatchRequest) Descriptor() ([]byte, []int)

Deprecated: Use CheckLSPClosedChannelMismatchRequest.ProtoReflect.Descriptor instead.

func (*CheckLSPClosedChannelMismatchRequest) GetChanPoint

func (x *CheckLSPClosedChannelMismatchRequest) GetChanPoint() string

func (*CheckLSPClosedChannelMismatchRequest) GetLspInfo

func (*CheckLSPClosedChannelMismatchRequest) ProtoMessage

func (*CheckLSPClosedChannelMismatchRequest) ProtoMessage()

func (*CheckLSPClosedChannelMismatchRequest) ProtoReflect

func (*CheckLSPClosedChannelMismatchRequest) Reset

func (*CheckLSPClosedChannelMismatchRequest) String

type CheckLSPClosedChannelMismatchResponse

type CheckLSPClosedChannelMismatchResponse struct {
	Mismatch bool `protobuf:"varint,1,opt,name=mismatch,proto3" json:"mismatch,omitempty"`
	// contains filtered or unexported fields
}

func (*CheckLSPClosedChannelMismatchResponse) Descriptor deprecated

func (*CheckLSPClosedChannelMismatchResponse) Descriptor() ([]byte, []int)

Deprecated: Use CheckLSPClosedChannelMismatchResponse.ProtoReflect.Descriptor instead.

func (*CheckLSPClosedChannelMismatchResponse) GetMismatch

func (*CheckLSPClosedChannelMismatchResponse) ProtoMessage

func (*CheckLSPClosedChannelMismatchResponse) ProtoMessage()

func (*CheckLSPClosedChannelMismatchResponse) ProtoReflect

func (*CheckLSPClosedChannelMismatchResponse) Reset

func (*CheckLSPClosedChannelMismatchResponse) String

type ClaimFeeEstimates

type ClaimFeeEstimates struct {
	Fees map[int32]int64 `` /* 151-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ClaimFeeEstimates) Descriptor deprecated

func (*ClaimFeeEstimates) Descriptor() ([]byte, []int)

Deprecated: Use ClaimFeeEstimates.ProtoReflect.Descriptor instead.

func (*ClaimFeeEstimates) GetFees

func (x *ClaimFeeEstimates) GetFees() map[int32]int64

func (*ClaimFeeEstimates) ProtoMessage

func (*ClaimFeeEstimates) ProtoMessage()

func (*ClaimFeeEstimates) ProtoReflect

func (x *ClaimFeeEstimates) ProtoReflect() protoreflect.Message

func (*ClaimFeeEstimates) Reset

func (x *ClaimFeeEstimates) Reset()

func (*ClaimFeeEstimates) String

func (x *ClaimFeeEstimates) String() string

type CloseChannelResult

type CloseChannelResult struct {
	RemotePubkey string `protobuf:"bytes,1,opt,name=remote_pubkey,json=remotePubkey,proto3" json:"remote_pubkey,omitempty"`
	ChannelPoint string `protobuf:"bytes,2,opt,name=channel_point,json=channelPoint,proto3" json:"channel_point,omitempty"`
	IsSkipped    bool   `protobuf:"varint,3,opt,name=is_skipped,json=isSkipped,proto3" json:"is_skipped,omitempty"`
	ClosingTxid  string `protobuf:"bytes,4,opt,name=closing_txid,json=closingTxid,proto3" json:"closing_txid,omitempty"`
	FailErr      string `protobuf:"bytes,5,opt,name=fail_err,json=failErr,proto3" json:"fail_err,omitempty"`
	// contains filtered or unexported fields
}

func (*CloseChannelResult) Descriptor deprecated

func (*CloseChannelResult) Descriptor() ([]byte, []int)

Deprecated: Use CloseChannelResult.ProtoReflect.Descriptor instead.

func (*CloseChannelResult) GetChannelPoint

func (x *CloseChannelResult) GetChannelPoint() string

func (*CloseChannelResult) GetClosingTxid

func (x *CloseChannelResult) GetClosingTxid() string

func (*CloseChannelResult) GetFailErr

func (x *CloseChannelResult) GetFailErr() string

func (*CloseChannelResult) GetIsSkipped

func (x *CloseChannelResult) GetIsSkipped() bool

func (*CloseChannelResult) GetRemotePubkey

func (x *CloseChannelResult) GetRemotePubkey() string

func (*CloseChannelResult) ProtoMessage

func (*CloseChannelResult) ProtoMessage()

func (*CloseChannelResult) ProtoReflect

func (x *CloseChannelResult) ProtoReflect() protoreflect.Message

func (*CloseChannelResult) Reset

func (x *CloseChannelResult) Reset()

func (*CloseChannelResult) String

func (x *CloseChannelResult) String() string

type CloseChannelsReply

type CloseChannelsReply struct {
	Channels []*CloseChannelResult `protobuf:"bytes,1,rep,name=channels,proto3" json:"channels,omitempty"`
	// contains filtered or unexported fields
}

func (*CloseChannelsReply) Descriptor deprecated

func (*CloseChannelsReply) Descriptor() ([]byte, []int)

Deprecated: Use CloseChannelsReply.ProtoReflect.Descriptor instead.

func (*CloseChannelsReply) GetChannels

func (x *CloseChannelsReply) GetChannels() []*CloseChannelResult

func (*CloseChannelsReply) ProtoMessage

func (*CloseChannelsReply) ProtoMessage()

func (*CloseChannelsReply) ProtoReflect

func (x *CloseChannelsReply) ProtoReflect() protoreflect.Message

func (*CloseChannelsReply) Reset

func (x *CloseChannelsReply) Reset()

func (*CloseChannelsReply) String

func (x *CloseChannelsReply) String() string

type CloseChannelsRequest

type CloseChannelsRequest struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// contains filtered or unexported fields
}

func (*CloseChannelsRequest) Descriptor deprecated

func (*CloseChannelsRequest) Descriptor() ([]byte, []int)

Deprecated: Use CloseChannelsRequest.ProtoReflect.Descriptor instead.

func (*CloseChannelsRequest) GetAddress

func (x *CloseChannelsRequest) GetAddress() string

func (*CloseChannelsRequest) ProtoMessage

func (*CloseChannelsRequest) ProtoMessage()

func (*CloseChannelsRequest) ProtoReflect

func (x *CloseChannelsRequest) ProtoReflect() protoreflect.Message

func (*CloseChannelsRequest) Reset

func (x *CloseChannelsRequest) Reset()

func (*CloseChannelsRequest) String

func (x *CloseChannelsRequest) String() string

type ConnectLSPReply

type ConnectLSPReply struct {
	// contains filtered or unexported fields
}

func (*ConnectLSPReply) Descriptor deprecated

func (*ConnectLSPReply) Descriptor() ([]byte, []int)

Deprecated: Use ConnectLSPReply.ProtoReflect.Descriptor instead.

func (*ConnectLSPReply) ProtoMessage

func (*ConnectLSPReply) ProtoMessage()

func (*ConnectLSPReply) ProtoReflect

func (x *ConnectLSPReply) ProtoReflect() protoreflect.Message

func (*ConnectLSPReply) Reset

func (x *ConnectLSPReply) Reset()

func (*ConnectLSPReply) String

func (x *ConnectLSPReply) String() string

type ConnectLSPRequest

type ConnectLSPRequest struct {
	LspId string `protobuf:"bytes,1,opt,name=lsp_id,json=lspId,proto3" json:"lsp_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ConnectLSPRequest) Descriptor deprecated

func (*ConnectLSPRequest) Descriptor() ([]byte, []int)

Deprecated: Use ConnectLSPRequest.ProtoReflect.Descriptor instead.

func (*ConnectLSPRequest) GetLspId

func (x *ConnectLSPRequest) GetLspId() string

func (*ConnectLSPRequest) ProtoMessage

func (*ConnectLSPRequest) ProtoMessage()

func (*ConnectLSPRequest) ProtoReflect

func (x *ConnectLSPRequest) ProtoReflect() protoreflect.Message

func (*ConnectLSPRequest) Reset

func (x *ConnectLSPRequest) Reset()

func (*ConnectLSPRequest) String

func (x *ConnectLSPRequest) String() string

type CreateRatchetSessionReply

type CreateRatchetSessionReply struct {
	SessionID string `protobuf:"bytes,1,opt,name=sessionID,proto3" json:"sessionID,omitempty"`
	Secret    string `protobuf:"bytes,2,opt,name=secret,proto3" json:"secret,omitempty"`
	PubKey    string `protobuf:"bytes,3,opt,name=pubKey,proto3" json:"pubKey,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateRatchetSessionReply) Descriptor deprecated

func (*CreateRatchetSessionReply) Descriptor() ([]byte, []int)

Deprecated: Use CreateRatchetSessionReply.ProtoReflect.Descriptor instead.

func (*CreateRatchetSessionReply) GetPubKey

func (x *CreateRatchetSessionReply) GetPubKey() string

func (*CreateRatchetSessionReply) GetSecret

func (x *CreateRatchetSessionReply) GetSecret() string

func (*CreateRatchetSessionReply) GetSessionID

func (x *CreateRatchetSessionReply) GetSessionID() string

func (*CreateRatchetSessionReply) ProtoMessage

func (*CreateRatchetSessionReply) ProtoMessage()

func (*CreateRatchetSessionReply) ProtoReflect

func (*CreateRatchetSessionReply) Reset

func (x *CreateRatchetSessionReply) Reset()

func (*CreateRatchetSessionReply) String

func (x *CreateRatchetSessionReply) String() string

type CreateRatchetSessionRequest

type CreateRatchetSessionRequest struct {
	Secret       string `protobuf:"bytes,1,opt,name=secret,proto3" json:"secret,omitempty"`
	RemotePubKey string `protobuf:"bytes,2,opt,name=remotePubKey,proto3" json:"remotePubKey,omitempty"`
	SessionID    string `protobuf:"bytes,3,opt,name=sessionID,proto3" json:"sessionID,omitempty"`
	Expiry       uint64 `protobuf:"varint,4,opt,name=expiry,proto3" json:"expiry,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateRatchetSessionRequest) Descriptor deprecated

func (*CreateRatchetSessionRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateRatchetSessionRequest.ProtoReflect.Descriptor instead.

func (*CreateRatchetSessionRequest) GetExpiry

func (x *CreateRatchetSessionRequest) GetExpiry() uint64

func (*CreateRatchetSessionRequest) GetRemotePubKey

func (x *CreateRatchetSessionRequest) GetRemotePubKey() string

func (*CreateRatchetSessionRequest) GetSecret

func (x *CreateRatchetSessionRequest) GetSecret() string

func (*CreateRatchetSessionRequest) GetSessionID

func (x *CreateRatchetSessionRequest) GetSessionID() string

func (*CreateRatchetSessionRequest) ProtoMessage

func (*CreateRatchetSessionRequest) ProtoMessage()

func (*CreateRatchetSessionRequest) ProtoReflect

func (*CreateRatchetSessionRequest) Reset

func (x *CreateRatchetSessionRequest) Reset()

func (*CreateRatchetSessionRequest) String

func (x *CreateRatchetSessionRequest) String() string

type DownloadBackupResponse

type DownloadBackupResponse struct {
	Files []string `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty"`
	// contains filtered or unexported fields
}

func (*DownloadBackupResponse) Descriptor deprecated

func (*DownloadBackupResponse) Descriptor() ([]byte, []int)

Deprecated: Use DownloadBackupResponse.ProtoReflect.Descriptor instead.

func (*DownloadBackupResponse) GetFiles

func (x *DownloadBackupResponse) GetFiles() []string

func (*DownloadBackupResponse) ProtoMessage

func (*DownloadBackupResponse) ProtoMessage()

func (*DownloadBackupResponse) ProtoReflect

func (x *DownloadBackupResponse) ProtoReflect() protoreflect.Message

func (*DownloadBackupResponse) Reset

func (x *DownloadBackupResponse) Reset()

func (*DownloadBackupResponse) String

func (x *DownloadBackupResponse) String() string

type FundStatusReply

type FundStatusReply struct {
	UnConfirmedAddresses []*SwapAddressInfo `protobuf:"bytes,1,rep,name=unConfirmedAddresses,proto3" json:"unConfirmedAddresses,omitempty"`
	ConfirmedAddresses   []*SwapAddressInfo `protobuf:"bytes,2,rep,name=confirmedAddresses,proto3" json:"confirmedAddresses,omitempty"`
	RefundableAddresses  []*SwapAddressInfo `protobuf:"bytes,3,rep,name=refundableAddresses,proto3" json:"refundableAddresses,omitempty"`
	// contains filtered or unexported fields
}

func (*FundStatusReply) Descriptor deprecated

func (*FundStatusReply) Descriptor() ([]byte, []int)

Deprecated: Use FundStatusReply.ProtoReflect.Descriptor instead.

func (*FundStatusReply) GetConfirmedAddresses

func (x *FundStatusReply) GetConfirmedAddresses() []*SwapAddressInfo

func (*FundStatusReply) GetRefundableAddresses

func (x *FundStatusReply) GetRefundableAddresses() []*SwapAddressInfo

func (*FundStatusReply) GetUnConfirmedAddresses

func (x *FundStatusReply) GetUnConfirmedAddresses() []*SwapAddressInfo

func (*FundStatusReply) ProtoMessage

func (*FundStatusReply) ProtoMessage()

func (*FundStatusReply) ProtoReflect

func (x *FundStatusReply) ProtoReflect() protoreflect.Message

func (*FundStatusReply) Reset

func (x *FundStatusReply) Reset()

func (*FundStatusReply) String

func (x *FundStatusReply) String() string

type FundStatusRequest

type FundStatusRequest struct {
	NotificationToken string `protobuf:"bytes,1,opt,name=notificationToken,proto3" json:"notificationToken,omitempty"`
	// contains filtered or unexported fields
}

func (*FundStatusRequest) Descriptor deprecated

func (*FundStatusRequest) Descriptor() ([]byte, []int)

Deprecated: Use FundStatusRequest.ProtoReflect.Descriptor instead.

func (*FundStatusRequest) GetNotificationToken

func (x *FundStatusRequest) GetNotificationToken() string

func (*FundStatusRequest) ProtoMessage

func (*FundStatusRequest) ProtoMessage()

func (*FundStatusRequest) ProtoReflect

func (x *FundStatusRequest) ProtoReflect() protoreflect.Message

func (*FundStatusRequest) Reset

func (x *FundStatusRequest) Reset()

func (*FundStatusRequest) String

func (x *FundStatusRequest) String() string

type Invoice

type Invoice struct {
	Memo    *InvoiceMemo `protobuf:"bytes,1,opt,name=memo,proto3" json:"memo,omitempty"`
	Settled bool         `protobuf:"varint,2,opt,name=settled,proto3" json:"settled,omitempty"`
	AmtPaid int64        `protobuf:"varint,3,opt,name=amtPaid,proto3" json:"amtPaid,omitempty"`
	// contains filtered or unexported fields
}

func (*Invoice) Descriptor deprecated

func (*Invoice) Descriptor() ([]byte, []int)

Deprecated: Use Invoice.ProtoReflect.Descriptor instead.

func (*Invoice) GetAmtPaid

func (x *Invoice) GetAmtPaid() int64

func (*Invoice) GetMemo

func (x *Invoice) GetMemo() *InvoiceMemo

func (*Invoice) GetSettled

func (x *Invoice) GetSettled() bool

func (*Invoice) ProtoMessage

func (*Invoice) ProtoMessage()

func (*Invoice) ProtoReflect

func (x *Invoice) ProtoReflect() protoreflect.Message

func (*Invoice) Reset

func (x *Invoice) Reset()

func (*Invoice) String

func (x *Invoice) String() string

type InvoiceMemo

type InvoiceMemo struct {
	Description     string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
	Amount          int64  `protobuf:"varint,2,opt,name=amount,proto3" json:"amount,omitempty"`
	PayeeName       string `protobuf:"bytes,3,opt,name=payeeName,proto3" json:"payeeName,omitempty"`
	PayeeImageURL   string `protobuf:"bytes,4,opt,name=payeeImageURL,proto3" json:"payeeImageURL,omitempty"`
	PayerName       string `protobuf:"bytes,5,opt,name=payerName,proto3" json:"payerName,omitempty"`
	PayerImageURL   string `protobuf:"bytes,6,opt,name=payerImageURL,proto3" json:"payerImageURL,omitempty"`
	TransferRequest bool   `protobuf:"varint,7,opt,name=transferRequest,proto3" json:"transferRequest,omitempty"`
	Expiry          int64  `protobuf:"varint,8,opt,name=expiry,proto3" json:"expiry,omitempty"`
	Preimage        []byte `protobuf:"bytes,9,opt,name=preimage,proto3" json:"preimage,omitempty"`
	// contains filtered or unexported fields
}

func (*InvoiceMemo) Descriptor deprecated

func (*InvoiceMemo) Descriptor() ([]byte, []int)

Deprecated: Use InvoiceMemo.ProtoReflect.Descriptor instead.

func (*InvoiceMemo) GetAmount

func (x *InvoiceMemo) GetAmount() int64

func (*InvoiceMemo) GetDescription

func (x *InvoiceMemo) GetDescription() string

func (*InvoiceMemo) GetExpiry

func (x *InvoiceMemo) GetExpiry() int64

func (*InvoiceMemo) GetPayeeImageURL

func (x *InvoiceMemo) GetPayeeImageURL() string

func (*InvoiceMemo) GetPayeeName

func (x *InvoiceMemo) GetPayeeName() string

func (*InvoiceMemo) GetPayerImageURL

func (x *InvoiceMemo) GetPayerImageURL() string

func (*InvoiceMemo) GetPayerName

func (x *InvoiceMemo) GetPayerName() string

func (*InvoiceMemo) GetPreimage

func (x *InvoiceMemo) GetPreimage() []byte

func (*InvoiceMemo) GetTransferRequest

func (x *InvoiceMemo) GetTransferRequest() bool

func (*InvoiceMemo) ProtoMessage

func (*InvoiceMemo) ProtoMessage()

func (*InvoiceMemo) ProtoReflect

func (x *InvoiceMemo) ProtoReflect() protoreflect.Message

func (*InvoiceMemo) Reset

func (x *InvoiceMemo) Reset()

func (*InvoiceMemo) String

func (x *InvoiceMemo) String() string

type LNURLAuth

type LNURLAuth struct {
	Tag      string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
	K1       string `protobuf:"bytes,2,opt,name=k1,proto3" json:"k1,omitempty"`
	Callback string `protobuf:"bytes,3,opt,name=callback,proto3" json:"callback,omitempty"`
	Host     string `protobuf:"bytes,4,opt,name=host,proto3" json:"host,omitempty"`
	Jwt      bool   `protobuf:"varint,5,opt,name=jwt,proto3" json:"jwt,omitempty"`
	// contains filtered or unexported fields
}

func (*LNURLAuth) Descriptor deprecated

func (*LNURLAuth) Descriptor() ([]byte, []int)

Deprecated: Use LNURLAuth.ProtoReflect.Descriptor instead.

func (*LNURLAuth) GetCallback

func (x *LNURLAuth) GetCallback() string

func (*LNURLAuth) GetHost

func (x *LNURLAuth) GetHost() string

func (*LNURLAuth) GetJwt

func (x *LNURLAuth) GetJwt() bool

func (*LNURLAuth) GetK1

func (x *LNURLAuth) GetK1() string

func (*LNURLAuth) GetTag

func (x *LNURLAuth) GetTag() string

func (*LNURLAuth) ProtoMessage

func (*LNURLAuth) ProtoMessage()

func (*LNURLAuth) ProtoReflect

func (x *LNURLAuth) ProtoReflect() protoreflect.Message

func (*LNURLAuth) Reset

func (x *LNURLAuth) Reset()

func (*LNURLAuth) String

func (x *LNURLAuth) String() string

type LNURLChannel

type LNURLChannel struct {
	K1       string `protobuf:"bytes,1,opt,name=k1,proto3" json:"k1,omitempty"`
	Callback string `protobuf:"bytes,2,opt,name=callback,proto3" json:"callback,omitempty"`
	Uri      string `protobuf:"bytes,3,opt,name=uri,proto3" json:"uri,omitempty"`
	// contains filtered or unexported fields
}

func (*LNURLChannel) Descriptor deprecated

func (*LNURLChannel) Descriptor() ([]byte, []int)

Deprecated: Use LNURLChannel.ProtoReflect.Descriptor instead.

func (*LNURLChannel) GetCallback

func (x *LNURLChannel) GetCallback() string

func (*LNURLChannel) GetK1

func (x *LNURLChannel) GetK1() string

func (*LNURLChannel) GetUri

func (x *LNURLChannel) GetUri() string

func (*LNURLChannel) ProtoMessage

func (*LNURLChannel) ProtoMessage()

func (*LNURLChannel) ProtoReflect

func (x *LNURLChannel) ProtoReflect() protoreflect.Message

func (*LNURLChannel) Reset

func (x *LNURLChannel) Reset()

func (*LNURLChannel) String

func (x *LNURLChannel) String() string

type LNURLPayResponse1

type LNURLPayResponse1 struct {
	Callback         string              `protobuf:"bytes,1,opt,name=callback,proto3" json:"callback,omitempty"`
	MinAmount        int64               `protobuf:"varint,2,opt,name=min_amount,json=minAmount,proto3" json:"min_amount,omitempty"`
	MaxAmount        int64               `protobuf:"varint,3,opt,name=max_amount,json=maxAmount,proto3" json:"max_amount,omitempty"`
	Metadata         []*LNUrlPayMetadata `protobuf:"bytes,4,rep,name=metadata,proto3" json:"metadata,omitempty"`
	Tag              string              `protobuf:"bytes,5,opt,name=tag,proto3" json:"tag,omitempty"`
	Amount           uint64              `protobuf:"varint,6,opt,name=amount,proto3" json:"amount,omitempty"`
	FromNodes        string              `protobuf:"bytes,7,opt,name=from_nodes,json=fromNodes,proto3" json:"from_nodes,omitempty"`
	Comment          string              `protobuf:"bytes,8,opt,name=comment,proto3" json:"comment,omitempty"`
	Host             string              `protobuf:"bytes,9,opt,name=host,proto3" json:"host,omitempty"`
	CommentAllowed   int64               `protobuf:"varint,10,opt,name=comment_allowed,json=commentAllowed,proto3" json:"comment_allowed,omitempty"`
	LightningAddress string              `protobuf:"bytes,11,opt,name=lightning_address,json=lightningAddress,proto3" json:"lightning_address,omitempty"`
	// contains filtered or unexported fields
}

func (*LNURLPayResponse1) Descriptor deprecated

func (*LNURLPayResponse1) Descriptor() ([]byte, []int)

Deprecated: Use LNURLPayResponse1.ProtoReflect.Descriptor instead.

func (*LNURLPayResponse1) GetAmount

func (x *LNURLPayResponse1) GetAmount() uint64

func (*LNURLPayResponse1) GetCallback

func (x *LNURLPayResponse1) GetCallback() string

func (*LNURLPayResponse1) GetComment

func (x *LNURLPayResponse1) GetComment() string

func (*LNURLPayResponse1) GetCommentAllowed

func (x *LNURLPayResponse1) GetCommentAllowed() int64

func (*LNURLPayResponse1) GetFromNodes

func (x *LNURLPayResponse1) GetFromNodes() string

func (*LNURLPayResponse1) GetHost

func (x *LNURLPayResponse1) GetHost() string

func (*LNURLPayResponse1) GetLightningAddress

func (x *LNURLPayResponse1) GetLightningAddress() string

func (*LNURLPayResponse1) GetMaxAmount

func (x *LNURLPayResponse1) GetMaxAmount() int64

func (*LNURLPayResponse1) GetMetadata

func (x *LNURLPayResponse1) GetMetadata() []*LNUrlPayMetadata

func (*LNURLPayResponse1) GetMinAmount

func (x *LNURLPayResponse1) GetMinAmount() int64

func (*LNURLPayResponse1) GetTag

func (x *LNURLPayResponse1) GetTag() string

func (*LNURLPayResponse1) ProtoMessage

func (*LNURLPayResponse1) ProtoMessage()

func (*LNURLPayResponse1) ProtoReflect

func (x *LNURLPayResponse1) ProtoReflect() protoreflect.Message

func (*LNURLPayResponse1) Reset

func (x *LNURLPayResponse1) Reset()

func (*LNURLPayResponse1) String

func (x *LNURLPayResponse1) String() string

type LNUrlPayImage

type LNUrlPayImage struct {
	DataUri string `protobuf:"bytes,1,opt,name=data_uri,json=dataUri,proto3" json:"data_uri,omitempty"`
	Ext     string `protobuf:"bytes,2,opt,name=ext,proto3" json:"ext,omitempty"`
	Bytes   []byte `protobuf:"bytes,3,opt,name=bytes,proto3" json:"bytes,omitempty"`
	// contains filtered or unexported fields
}

func (*LNUrlPayImage) Descriptor deprecated

func (*LNUrlPayImage) Descriptor() ([]byte, []int)

Deprecated: Use LNUrlPayImage.ProtoReflect.Descriptor instead.

func (*LNUrlPayImage) GetBytes

func (x *LNUrlPayImage) GetBytes() []byte

func (*LNUrlPayImage) GetDataUri

func (x *LNUrlPayImage) GetDataUri() string

func (*LNUrlPayImage) GetExt

func (x *LNUrlPayImage) GetExt() string

func (*LNUrlPayImage) ProtoMessage

func (*LNUrlPayImage) ProtoMessage()

func (*LNUrlPayImage) ProtoReflect

func (x *LNUrlPayImage) ProtoReflect() protoreflect.Message

func (*LNUrlPayImage) Reset

func (x *LNUrlPayImage) Reset()

func (*LNUrlPayImage) String

func (x *LNUrlPayImage) String() string

type LNUrlPayInfo

type LNUrlPayInfo struct {
	PaymentHash        string              `protobuf:"bytes,1,opt,name=paymentHash,proto3" json:"paymentHash,omitempty"`
	Invoice            string              `protobuf:"bytes,2,opt,name=invoice,proto3" json:"invoice,omitempty"`
	SuccessAction      *SuccessAction      `protobuf:"bytes,3,opt,name=success_action,json=successAction,proto3" json:"success_action,omitempty"`
	Comment            string              `protobuf:"bytes,4,opt,name=comment,proto3" json:"comment,omitempty"`
	InvoiceDescription string              `protobuf:"bytes,5,opt,name=invoice_description,json=invoiceDescription,proto3" json:"invoice_description,omitempty"`
	Metadata           []*LNUrlPayMetadata `protobuf:"bytes,6,rep,name=metadata,proto3" json:"metadata,omitempty"`
	Host               string              `protobuf:"bytes,7,opt,name=host,proto3" json:"host,omitempty"`
	LightningAddress   string              `protobuf:"bytes,8,opt,name=lightning_address,json=lightningAddress,proto3" json:"lightning_address,omitempty"`
	// contains filtered or unexported fields
}

func (*LNUrlPayInfo) Descriptor deprecated

func (*LNUrlPayInfo) Descriptor() ([]byte, []int)

Deprecated: Use LNUrlPayInfo.ProtoReflect.Descriptor instead.

func (*LNUrlPayInfo) GetComment

func (x *LNUrlPayInfo) GetComment() string

func (*LNUrlPayInfo) GetHost

func (x *LNUrlPayInfo) GetHost() string

func (*LNUrlPayInfo) GetInvoice

func (x *LNUrlPayInfo) GetInvoice() string

func (*LNUrlPayInfo) GetInvoiceDescription

func (x *LNUrlPayInfo) GetInvoiceDescription() string

func (*LNUrlPayInfo) GetLightningAddress

func (x *LNUrlPayInfo) GetLightningAddress() string

func (*LNUrlPayInfo) GetMetadata

func (x *LNUrlPayInfo) GetMetadata() []*LNUrlPayMetadata

func (*LNUrlPayInfo) GetPaymentHash

func (x *LNUrlPayInfo) GetPaymentHash() string

func (*LNUrlPayInfo) GetSuccessAction

func (x *LNUrlPayInfo) GetSuccessAction() *SuccessAction

func (*LNUrlPayInfo) ProtoMessage

func (*LNUrlPayInfo) ProtoMessage()

func (*LNUrlPayInfo) ProtoReflect

func (x *LNUrlPayInfo) ProtoReflect() protoreflect.Message

func (*LNUrlPayInfo) Reset

func (x *LNUrlPayInfo) Reset()

func (*LNUrlPayInfo) String

func (x *LNUrlPayInfo) String() string

type LNUrlPayInfoList

type LNUrlPayInfoList struct {
	InfoList []*LNUrlPayInfo `protobuf:"bytes,1,rep,name=infoList,proto3" json:"infoList,omitempty"`
	// contains filtered or unexported fields
}

func (*LNUrlPayInfoList) Descriptor deprecated

func (*LNUrlPayInfoList) Descriptor() ([]byte, []int)

Deprecated: Use LNUrlPayInfoList.ProtoReflect.Descriptor instead.

func (*LNUrlPayInfoList) GetInfoList

func (x *LNUrlPayInfoList) GetInfoList() []*LNUrlPayInfo

func (*LNUrlPayInfoList) ProtoMessage

func (*LNUrlPayInfoList) ProtoMessage()

func (*LNUrlPayInfoList) ProtoReflect

func (x *LNUrlPayInfoList) ProtoReflect() protoreflect.Message

func (*LNUrlPayInfoList) Reset

func (x *LNUrlPayInfoList) Reset()

func (*LNUrlPayInfoList) String

func (x *LNUrlPayInfoList) String() string

type LNUrlPayMetadata

type LNUrlPayMetadata struct {
	Entry           []string       `protobuf:"bytes,1,rep,name=entry,proto3" json:"entry,omitempty"`
	Description     string         `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	LongDescription string         `protobuf:"bytes,3,opt,name=long_description,json=longDescription,proto3" json:"long_description,omitempty"`
	Image           *LNUrlPayImage `protobuf:"bytes,4,opt,name=image,proto3" json:"image,omitempty"`
	// contains filtered or unexported fields
}

func (*LNUrlPayMetadata) Descriptor deprecated

func (*LNUrlPayMetadata) Descriptor() ([]byte, []int)

Deprecated: Use LNUrlPayMetadata.ProtoReflect.Descriptor instead.

func (*LNUrlPayMetadata) GetDescription

func (x *LNUrlPayMetadata) GetDescription() string

func (*LNUrlPayMetadata) GetEntry

func (x *LNUrlPayMetadata) GetEntry() []string

func (*LNUrlPayMetadata) GetImage

func (x *LNUrlPayMetadata) GetImage() *LNUrlPayImage

func (*LNUrlPayMetadata) GetLongDescription

func (x *LNUrlPayMetadata) GetLongDescription() string

func (*LNUrlPayMetadata) ProtoMessage

func (*LNUrlPayMetadata) ProtoMessage()

func (*LNUrlPayMetadata) ProtoReflect

func (x *LNUrlPayMetadata) ProtoReflect() protoreflect.Message

func (*LNUrlPayMetadata) Reset

func (x *LNUrlPayMetadata) Reset()

func (*LNUrlPayMetadata) String

func (x *LNUrlPayMetadata) String() string

type LNUrlResponse

type LNUrlResponse struct {

	// Types that are assignable to Action:
	//
	//	*LNUrlResponse_Withdraw
	//	*LNUrlResponse_Channel
	//	*LNUrlResponse_Auth
	//	*LNUrlResponse_PayResponse1
	Action isLNUrlResponse_Action `protobuf_oneof:"action"`
	// contains filtered or unexported fields
}

func (*LNUrlResponse) Descriptor deprecated

func (*LNUrlResponse) Descriptor() ([]byte, []int)

Deprecated: Use LNUrlResponse.ProtoReflect.Descriptor instead.

func (*LNUrlResponse) GetAction

func (m *LNUrlResponse) GetAction() isLNUrlResponse_Action

func (*LNUrlResponse) GetAuth

func (x *LNUrlResponse) GetAuth() *LNURLAuth

func (*LNUrlResponse) GetChannel

func (x *LNUrlResponse) GetChannel() *LNURLChannel

func (*LNUrlResponse) GetPayResponse1

func (x *LNUrlResponse) GetPayResponse1() *LNURLPayResponse1

func (*LNUrlResponse) GetWithdraw

func (x *LNUrlResponse) GetWithdraw() *LNUrlWithdraw

func (*LNUrlResponse) ProtoMessage

func (*LNUrlResponse) ProtoMessage()

func (*LNUrlResponse) ProtoReflect

func (x *LNUrlResponse) ProtoReflect() protoreflect.Message

func (*LNUrlResponse) Reset

func (x *LNUrlResponse) Reset()

func (*LNUrlResponse) String

func (x *LNUrlResponse) String() string

type LNUrlResponse_Auth

type LNUrlResponse_Auth struct {
	Auth *LNURLAuth `protobuf:"bytes,3,opt,name=auth,proto3,oneof"`
}

type LNUrlResponse_Channel

type LNUrlResponse_Channel struct {
	Channel *LNURLChannel `protobuf:"bytes,2,opt,name=channel,proto3,oneof"`
}

type LNUrlResponse_PayResponse1

type LNUrlResponse_PayResponse1 struct {
	PayResponse1 *LNURLPayResponse1 `protobuf:"bytes,4,opt,name=payResponse1,proto3,oneof"`
}

type LNUrlResponse_Withdraw

type LNUrlResponse_Withdraw struct {
	Withdraw *LNUrlWithdraw `protobuf:"bytes,1,opt,name=withdraw,proto3,oneof"`
}

type LNUrlWithdraw

type LNUrlWithdraw struct {
	MinAmount          int64  `protobuf:"varint,1,opt,name=min_amount,json=minAmount,proto3" json:"min_amount,omitempty"`
	MaxAmount          int64  `protobuf:"varint,2,opt,name=max_amount,json=maxAmount,proto3" json:"max_amount,omitempty"`
	DefaultDescription string `protobuf:"bytes,3,opt,name=default_description,json=defaultDescription,proto3" json:"default_description,omitempty"`
	// contains filtered or unexported fields
}

func (*LNUrlWithdraw) Descriptor deprecated

func (*LNUrlWithdraw) Descriptor() ([]byte, []int)

Deprecated: Use LNUrlWithdraw.ProtoReflect.Descriptor instead.

func (*LNUrlWithdraw) GetDefaultDescription

func (x *LNUrlWithdraw) GetDefaultDescription() string

func (*LNUrlWithdraw) GetMaxAmount

func (x *LNUrlWithdraw) GetMaxAmount() int64

func (*LNUrlWithdraw) GetMinAmount

func (x *LNUrlWithdraw) GetMinAmount() int64

func (*LNUrlWithdraw) ProtoMessage

func (*LNUrlWithdraw) ProtoMessage()

func (*LNUrlWithdraw) ProtoReflect

func (x *LNUrlWithdraw) ProtoReflect() protoreflect.Message

func (*LNUrlWithdraw) Reset

func (x *LNUrlWithdraw) Reset()

func (*LNUrlWithdraw) String

func (x *LNUrlWithdraw) String() string

type LSPActivity

type LSPActivity struct {

	// The key is the lsp id.
	// The value is the timestamp in seconds of the last payment.
	Activity map[string]int64 `` /* 158-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*LSPActivity) Descriptor deprecated

func (*LSPActivity) Descriptor() ([]byte, []int)

Deprecated: Use LSPActivity.ProtoReflect.Descriptor instead.

func (*LSPActivity) GetActivity

func (x *LSPActivity) GetActivity() map[string]int64

func (*LSPActivity) ProtoMessage

func (*LSPActivity) ProtoMessage()

func (*LSPActivity) ProtoReflect

func (x *LSPActivity) ProtoReflect() protoreflect.Message

func (*LSPActivity) Reset

func (x *LSPActivity) Reset()

func (*LSPActivity) String

func (x *LSPActivity) String() string

type LSPInformation

type LSPInformation struct {

	// / The id of lsp
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// / The name of of lsp
	Name      string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	WidgetUrl string `protobuf:"bytes,3,opt,name=widget_url,json=widgetUrl,proto3" json:"widget_url,omitempty"`
	// / The identity pubkey of the Lightning node
	Pubkey string `protobuf:"bytes,4,opt,name=pubkey,proto3" json:"pubkey,omitempty"`
	// / The network location of the lightning node, e.g. `12.34.56.78:9012` or
	// / `localhost:10011`
	Host string `protobuf:"bytes,5,opt,name=host,proto3" json:"host,omitempty"`
	// / The channel capacity in satoshis
	ChannelCapacity int64 `protobuf:"varint,6,opt,name=channel_capacity,json=channelCapacity,proto3" json:"channel_capacity,omitempty"`
	// / The target number of blocks that the funding transaction should be
	// / confirmed by.
	TargetConf int32 `protobuf:"varint,7,opt,name=target_conf,json=targetConf,proto3" json:"target_conf,omitempty"`
	// / The base fee charged regardless of the number of milli-satoshis sent.
	BaseFeeMsat int64 `protobuf:"varint,8,opt,name=base_fee_msat,json=baseFeeMsat,proto3" json:"base_fee_msat,omitempty"`
	// / The effective fee rate in milli-satoshis. The precision of this value goes
	// / up to 6 decimal places, so 1e-6.
	FeeRate float64 `protobuf:"fixed64,9,opt,name=fee_rate,json=feeRate,proto3" json:"fee_rate,omitempty"`
	// / The required timelock delta for HTLCs forwarded over the channel.
	TimeLockDelta uint32 `protobuf:"varint,10,opt,name=time_lock_delta,json=timeLockDelta,proto3" json:"time_lock_delta,omitempty"`
	// / The minimum value in millisatoshi we will require for incoming HTLCs on
	// / the channel.
	MinHtlcMsat int64 `protobuf:"varint,11,opt,name=min_htlc_msat,json=minHtlcMsat,proto3" json:"min_htlc_msat,omitempty"`
	// Deprecated: Marked as deprecated in messages.proto.
	ChannelFeePermyriad int64  `protobuf:"varint,12,opt,name=channel_fee_permyriad,json=channelFeePermyriad,proto3" json:"channel_fee_permyriad,omitempty"`
	LspPubkey           []byte `protobuf:"bytes,13,opt,name=lsp_pubkey,json=lspPubkey,proto3" json:"lsp_pubkey,omitempty"`
	// The channel can be closed if not used this duration in seconds.
	//
	// Deprecated: Marked as deprecated in messages.proto.
	MaxInactiveDuration int64 `protobuf:"varint,14,opt,name=max_inactive_duration,json=maxInactiveDuration,proto3" json:"max_inactive_duration,omitempty"`
	// Deprecated: Marked as deprecated in messages.proto.
	ChannelMinimumFeeMsat int64 `` /* 130-byte string literal not displayed */
	// The cheapest fee option for opening a channel. Could be null if there are
	// no opening_fee_params in the menu (i.e. the LSP does not support opening
	// channels right now).
	CheapestOpeningFeeParams *OpeningFeeParams `` /* 138-byte string literal not displayed */
	// The opening fee options that are valid for the longest duration. Could be
	// null if there are no opening_fee_params in the menu (i.e. the LSP does not
	// support opening channels right now).
	LongestValidOpeningFeeParams *OpeningFeeParams `` /* 152-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*LSPInformation) Descriptor deprecated

func (*LSPInformation) Descriptor() ([]byte, []int)

Deprecated: Use LSPInformation.ProtoReflect.Descriptor instead.

func (*LSPInformation) GetBaseFeeMsat

func (x *LSPInformation) GetBaseFeeMsat() int64

func (*LSPInformation) GetChannelCapacity

func (x *LSPInformation) GetChannelCapacity() int64

func (*LSPInformation) GetChannelFeePermyriad deprecated

func (x *LSPInformation) GetChannelFeePermyriad() int64

Deprecated: Marked as deprecated in messages.proto.

func (*LSPInformation) GetChannelMinimumFeeMsat deprecated

func (x *LSPInformation) GetChannelMinimumFeeMsat() int64

Deprecated: Marked as deprecated in messages.proto.

func (*LSPInformation) GetCheapestOpeningFeeParams

func (x *LSPInformation) GetCheapestOpeningFeeParams() *OpeningFeeParams

func (*LSPInformation) GetFeeRate

func (x *LSPInformation) GetFeeRate() float64

func (*LSPInformation) GetHost

func (x *LSPInformation) GetHost() string

func (*LSPInformation) GetId

func (x *LSPInformation) GetId() string

func (*LSPInformation) GetLongestValidOpeningFeeParams

func (x *LSPInformation) GetLongestValidOpeningFeeParams() *OpeningFeeParams

func (*LSPInformation) GetLspPubkey

func (x *LSPInformation) GetLspPubkey() []byte

func (*LSPInformation) GetMaxInactiveDuration deprecated

func (x *LSPInformation) GetMaxInactiveDuration() int64

Deprecated: Marked as deprecated in messages.proto.

func (*LSPInformation) GetMinHtlcMsat

func (x *LSPInformation) GetMinHtlcMsat() int64

func (*LSPInformation) GetName

func (x *LSPInformation) GetName() string

func (*LSPInformation) GetPubkey

func (x *LSPInformation) GetPubkey() string

func (*LSPInformation) GetTargetConf

func (x *LSPInformation) GetTargetConf() int32

func (*LSPInformation) GetTimeLockDelta

func (x *LSPInformation) GetTimeLockDelta() uint32

func (*LSPInformation) GetWidgetUrl

func (x *LSPInformation) GetWidgetUrl() string

func (*LSPInformation) ProtoMessage

func (*LSPInformation) ProtoMessage()

func (*LSPInformation) ProtoReflect

func (x *LSPInformation) ProtoReflect() protoreflect.Message

func (*LSPInformation) Reset

func (x *LSPInformation) Reset()

func (*LSPInformation) String

func (x *LSPInformation) String() string

type LSPList

type LSPList struct {
	Lsps map[string]*LSPInformation `` // The key is the lsp id
	/* 149-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*LSPList) Descriptor deprecated

func (*LSPList) Descriptor() ([]byte, []int)

Deprecated: Use LSPList.ProtoReflect.Descriptor instead.

func (*LSPList) GetLsps

func (x *LSPList) GetLsps() map[string]*LSPInformation

func (*LSPList) ProtoMessage

func (*LSPList) ProtoMessage()

func (*LSPList) ProtoReflect

func (x *LSPList) ProtoReflect() protoreflect.Message

func (*LSPList) Reset

func (x *LSPList) Reset()

func (*LSPList) String

func (x *LSPList) String() string

type LSPListRequest

type LSPListRequest struct {
	// contains filtered or unexported fields
}

func (*LSPListRequest) Descriptor deprecated

func (*LSPListRequest) Descriptor() ([]byte, []int)

Deprecated: Use LSPListRequest.ProtoReflect.Descriptor instead.

func (*LSPListRequest) ProtoMessage

func (*LSPListRequest) ProtoMessage()

func (*LSPListRequest) ProtoReflect

func (x *LSPListRequest) ProtoReflect() protoreflect.Message

func (*LSPListRequest) Reset

func (x *LSPListRequest) Reset()

func (*LSPListRequest) String

func (x *LSPListRequest) String() string

type ListPaymentsRequest

type ListPaymentsRequest struct {
	// contains filtered or unexported fields
}

func (*ListPaymentsRequest) Descriptor deprecated

func (*ListPaymentsRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListPaymentsRequest.ProtoReflect.Descriptor instead.

func (*ListPaymentsRequest) ProtoMessage

func (*ListPaymentsRequest) ProtoMessage()

func (*ListPaymentsRequest) ProtoReflect

func (x *ListPaymentsRequest) ProtoReflect() protoreflect.Message

func (*ListPaymentsRequest) Reset

func (x *ListPaymentsRequest) Reset()

func (*ListPaymentsRequest) String

func (x *ListPaymentsRequest) String() string

type NotificationEvent

type NotificationEvent struct {
	Type NotificationEvent_NotificationType `protobuf:"varint,1,opt,name=type,proto3,enum=data.NotificationEvent_NotificationType" json:"type,omitempty"`
	Data []string                           `protobuf:"bytes,2,rep,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*NotificationEvent) Descriptor deprecated

func (*NotificationEvent) Descriptor() ([]byte, []int)

Deprecated: Use NotificationEvent.ProtoReflect.Descriptor instead.

func (*NotificationEvent) GetData

func (x *NotificationEvent) GetData() []string

func (*NotificationEvent) GetType

func (*NotificationEvent) ProtoMessage

func (*NotificationEvent) ProtoMessage()

func (*NotificationEvent) ProtoReflect

func (x *NotificationEvent) ProtoReflect() protoreflect.Message

func (*NotificationEvent) Reset

func (x *NotificationEvent) Reset()

func (*NotificationEvent) String

func (x *NotificationEvent) String() string

type NotificationEvent_NotificationType

type NotificationEvent_NotificationType int32
const (
	NotificationEvent_READY                        NotificationEvent_NotificationType = 0
	NotificationEvent_INITIALIZATION_FAILED        NotificationEvent_NotificationType = 1
	NotificationEvent_ACCOUNT_CHANGED              NotificationEvent_NotificationType = 2
	NotificationEvent_PAYMENT_SENT                 NotificationEvent_NotificationType = 3
	NotificationEvent_INVOICE_PAID                 NotificationEvent_NotificationType = 4
	NotificationEvent_LIGHTNING_SERVICE_DOWN       NotificationEvent_NotificationType = 5
	NotificationEvent_FUND_ADDRESS_CREATED         NotificationEvent_NotificationType = 6
	NotificationEvent_FUND_ADDRESS_UNSPENT_CHANGED NotificationEvent_NotificationType = 7
	NotificationEvent_BACKUP_SUCCESS               NotificationEvent_NotificationType = 8
	NotificationEvent_BACKUP_FAILED                NotificationEvent_NotificationType = 9
	NotificationEvent_BACKUP_AUTH_FAILED           NotificationEvent_NotificationType = 10
	NotificationEvent_BACKUP_NODE_CONFLICT         NotificationEvent_NotificationType = 11
	NotificationEvent_BACKUP_REQUEST               NotificationEvent_NotificationType = 12
	NotificationEvent_PAYMENT_FAILED               NotificationEvent_NotificationType = 13
	NotificationEvent_PAYMENT_SUCCEEDED            NotificationEvent_NotificationType = 14
	NotificationEvent_REVERSE_SWAP_CLAIM_STARTED   NotificationEvent_NotificationType = 15
	NotificationEvent_REVERSE_SWAP_CLAIM_SUCCEEDED NotificationEvent_NotificationType = 16
	NotificationEvent_REVERSE_SWAP_CLAIM_FAILED    NotificationEvent_NotificationType = 17
	NotificationEvent_REVERSE_SWAP_CLAIM_CONFIRMED NotificationEvent_NotificationType = 18
	NotificationEvent_LSP_CHANNEL_OPENED           NotificationEvent_NotificationType = 19
	NotificationEvent_BACKUP_NOT_LATEST_CONFLICT   NotificationEvent_NotificationType = 20
)

func (NotificationEvent_NotificationType) Descriptor

func (NotificationEvent_NotificationType) Enum

func (NotificationEvent_NotificationType) EnumDescriptor deprecated

func (NotificationEvent_NotificationType) EnumDescriptor() ([]byte, []int)

Deprecated: Use NotificationEvent_NotificationType.Descriptor instead.

func (NotificationEvent_NotificationType) Number

func (NotificationEvent_NotificationType) String

func (NotificationEvent_NotificationType) Type

type OpeningFeeParams

type OpeningFeeParams struct {

	// / The minimum value in millisatoshi we will require for incoming HTLCs on the channel.
	MinMsat uint64 `protobuf:"varint,1,opt,name=min_msat,json=minMsat,proto3" json:"min_msat,omitempty"`
	// / The fee in ppm charged over liquidity when buying a channel.
	Proportional uint32 `protobuf:"varint,2,opt,name=proportional,proto3" json:"proportional,omitempty"`
	// / The time this opening fee params promise expires.
	ValidUntil string `protobuf:"bytes,3,opt,name=valid_until,json=validUntil,proto3" json:"valid_until,omitempty"`
	// The channel can be closed if not used this duration in blocks.
	MaxIdleTime          uint32 `protobuf:"varint,4,opt,name=max_idle_time,json=maxIdleTime,proto3" json:"max_idle_time,omitempty"`
	MaxClientToSelfDelay uint32 `` /* 128-byte string literal not displayed */
	Promise              string `protobuf:"bytes,6,opt,name=promise,proto3" json:"promise,omitempty"`
	// contains filtered or unexported fields
}

func (*OpeningFeeParams) Descriptor deprecated

func (*OpeningFeeParams) Descriptor() ([]byte, []int)

Deprecated: Use OpeningFeeParams.ProtoReflect.Descriptor instead.

func (*OpeningFeeParams) GetMaxClientToSelfDelay

func (x *OpeningFeeParams) GetMaxClientToSelfDelay() uint32

func (*OpeningFeeParams) GetMaxIdleTime

func (x *OpeningFeeParams) GetMaxIdleTime() uint32

func (*OpeningFeeParams) GetMinMsat

func (x *OpeningFeeParams) GetMinMsat() uint64

func (*OpeningFeeParams) GetPromise

func (x *OpeningFeeParams) GetPromise() string

func (*OpeningFeeParams) GetProportional

func (x *OpeningFeeParams) GetProportional() uint32

func (*OpeningFeeParams) GetValidUntil

func (x *OpeningFeeParams) GetValidUntil() string

func (*OpeningFeeParams) ProtoMessage

func (*OpeningFeeParams) ProtoMessage()

func (*OpeningFeeParams) ProtoReflect

func (x *OpeningFeeParams) ProtoReflect() protoreflect.Message

func (*OpeningFeeParams) Reset

func (x *OpeningFeeParams) Reset()

func (*OpeningFeeParams) String

func (x *OpeningFeeParams) String() string

type PayInvoiceRequest

type PayInvoiceRequest struct {
	Amount         int64  `protobuf:"varint,1,opt,name=amount,proto3" json:"amount,omitempty"`
	PaymentRequest string `protobuf:"bytes,2,opt,name=paymentRequest,proto3" json:"paymentRequest,omitempty"`
	Fee            int64  `protobuf:"varint,3,opt,name=fee,proto3" json:"fee,omitempty"`
	// contains filtered or unexported fields
}

func (*PayInvoiceRequest) Descriptor deprecated

func (*PayInvoiceRequest) Descriptor() ([]byte, []int)

Deprecated: Use PayInvoiceRequest.ProtoReflect.Descriptor instead.

func (*PayInvoiceRequest) GetAmount

func (x *PayInvoiceRequest) GetAmount() int64

func (*PayInvoiceRequest) GetFee

func (x *PayInvoiceRequest) GetFee() int64

func (*PayInvoiceRequest) GetPaymentRequest

func (x *PayInvoiceRequest) GetPaymentRequest() string

func (*PayInvoiceRequest) ProtoMessage

func (*PayInvoiceRequest) ProtoMessage()

func (*PayInvoiceRequest) ProtoReflect

func (x *PayInvoiceRequest) ProtoReflect() protoreflect.Message

func (*PayInvoiceRequest) Reset

func (x *PayInvoiceRequest) Reset()

func (*PayInvoiceRequest) String

func (x *PayInvoiceRequest) String() string

type Payment

type Payment struct {
	Type                       Payment_PaymentType `protobuf:"varint,1,opt,name=type,proto3,enum=data.Payment_PaymentType" json:"type,omitempty"`
	Amount                     int64               `protobuf:"varint,3,opt,name=amount,proto3" json:"amount,omitempty"`
	CreationTimestamp          int64               `protobuf:"varint,4,opt,name=creationTimestamp,proto3" json:"creationTimestamp,omitempty"`
	InvoiceMemo                *InvoiceMemo        `protobuf:"bytes,6,opt,name=invoiceMemo,proto3" json:"invoiceMemo,omitempty"`
	RedeemTxID                 string              `protobuf:"bytes,7,opt,name=redeemTxID,proto3" json:"redeemTxID,omitempty"`
	PaymentHash                string              `protobuf:"bytes,8,opt,name=paymentHash,proto3" json:"paymentHash,omitempty"`
	Destination                string              `protobuf:"bytes,9,opt,name=destination,proto3" json:"destination,omitempty"`
	PendingExpirationHeight    uint32              `protobuf:"varint,10,opt,name=PendingExpirationHeight,proto3" json:"PendingExpirationHeight,omitempty"`
	PendingExpirationTimestamp int64               `protobuf:"varint,11,opt,name=PendingExpirationTimestamp,proto3" json:"PendingExpirationTimestamp,omitempty"`
	Fee                        int64               `protobuf:"varint,12,opt,name=fee,proto3" json:"fee,omitempty"`
	Preimage                   string              `protobuf:"bytes,13,opt,name=preimage,proto3" json:"preimage,omitempty"`
	ClosedChannelPoint         string              `protobuf:"bytes,14,opt,name=closedChannelPoint,proto3" json:"closedChannelPoint,omitempty"`
	IsChannelPending           bool                `protobuf:"varint,15,opt,name=isChannelPending,proto3" json:"isChannelPending,omitempty"`
	IsChannelCloseConfimed     bool                `protobuf:"varint,16,opt,name=isChannelCloseConfimed,proto3" json:"isChannelCloseConfimed,omitempty"`
	ClosedChannelTxID          string              `protobuf:"bytes,17,opt,name=closedChannelTxID,proto3" json:"closedChannelTxID,omitempty"`
	IsKeySend                  bool                `protobuf:"varint,18,opt,name=isKeySend,proto3" json:"isKeySend,omitempty"`
	PendingFull                bool                `protobuf:"varint,19,opt,name=PendingFull,proto3" json:"PendingFull,omitempty"`
	ClosedChannelRemoteTxID    string              `protobuf:"bytes,20,opt,name=closedChannelRemoteTxID,proto3" json:"closedChannelRemoteTxID,omitempty"`
	ClosedChannelSweepTxID     string              `protobuf:"bytes,21,opt,name=closedChannelSweepTxID,proto3" json:"closedChannelSweepTxID,omitempty"`
	GroupKey                   string              `protobuf:"bytes,22,opt,name=groupKey,proto3" json:"groupKey,omitempty"`
	GroupName                  string              `protobuf:"bytes,23,opt,name=groupName,proto3" json:"groupName,omitempty"`
	LnurlPayInfo               *LNUrlPayInfo       `protobuf:"bytes,24,opt,name=lnurlPayInfo,proto3" json:"lnurlPayInfo,omitempty"`
	// contains filtered or unexported fields
}

func (*Payment) Descriptor deprecated

func (*Payment) Descriptor() ([]byte, []int)

Deprecated: Use Payment.ProtoReflect.Descriptor instead.

func (*Payment) GetAmount

func (x *Payment) GetAmount() int64

func (*Payment) GetClosedChannelPoint

func (x *Payment) GetClosedChannelPoint() string

func (*Payment) GetClosedChannelRemoteTxID

func (x *Payment) GetClosedChannelRemoteTxID() string

func (*Payment) GetClosedChannelSweepTxID

func (x *Payment) GetClosedChannelSweepTxID() string

func (*Payment) GetClosedChannelTxID

func (x *Payment) GetClosedChannelTxID() string

func (*Payment) GetCreationTimestamp

func (x *Payment) GetCreationTimestamp() int64

func (*Payment) GetDestination

func (x *Payment) GetDestination() string

func (*Payment) GetFee

func (x *Payment) GetFee() int64

func (*Payment) GetGroupKey

func (x *Payment) GetGroupKey() string

func (*Payment) GetGroupName

func (x *Payment) GetGroupName() string

func (*Payment) GetInvoiceMemo

func (x *Payment) GetInvoiceMemo() *InvoiceMemo

func (*Payment) GetIsChannelCloseConfimed

func (x *Payment) GetIsChannelCloseConfimed() bool

func (*Payment) GetIsChannelPending

func (x *Payment) GetIsChannelPending() bool

func (*Payment) GetIsKeySend

func (x *Payment) GetIsKeySend() bool

func (*Payment) GetLnurlPayInfo

func (x *Payment) GetLnurlPayInfo() *LNUrlPayInfo

func (*Payment) GetPaymentHash

func (x *Payment) GetPaymentHash() string

func (*Payment) GetPendingExpirationHeight

func (x *Payment) GetPendingExpirationHeight() uint32

func (*Payment) GetPendingExpirationTimestamp

func (x *Payment) GetPendingExpirationTimestamp() int64

func (*Payment) GetPendingFull

func (x *Payment) GetPendingFull() bool

func (*Payment) GetPreimage

func (x *Payment) GetPreimage() string

func (*Payment) GetRedeemTxID

func (x *Payment) GetRedeemTxID() string

func (*Payment) GetType

func (x *Payment) GetType() Payment_PaymentType

func (*Payment) ProtoMessage

func (*Payment) ProtoMessage()

func (*Payment) ProtoReflect

func (x *Payment) ProtoReflect() protoreflect.Message

func (*Payment) Reset

func (x *Payment) Reset()

func (*Payment) String

func (x *Payment) String() string

type PaymentResponse

type PaymentResponse struct {
	PaymentError string `protobuf:"bytes,1,opt,name=paymentError,proto3" json:"paymentError,omitempty"`
	TraceReport  string `protobuf:"bytes,2,opt,name=traceReport,proto3" json:"traceReport,omitempty"`
	// contains filtered or unexported fields
}

func (*PaymentResponse) Descriptor deprecated

func (*PaymentResponse) Descriptor() ([]byte, []int)

Deprecated: Use PaymentResponse.ProtoReflect.Descriptor instead.

func (*PaymentResponse) GetPaymentError

func (x *PaymentResponse) GetPaymentError() string

func (*PaymentResponse) GetTraceReport

func (x *PaymentResponse) GetTraceReport() string

func (*PaymentResponse) ProtoMessage

func (*PaymentResponse) ProtoMessage()

func (*PaymentResponse) ProtoReflect

func (x *PaymentResponse) ProtoReflect() protoreflect.Message

func (*PaymentResponse) Reset

func (x *PaymentResponse) Reset()

func (*PaymentResponse) String

func (x *PaymentResponse) String() string

type Payment_PaymentType

type Payment_PaymentType int32
const (
	Payment_DEPOSIT        Payment_PaymentType = 0
	Payment_WITHDRAWAL     Payment_PaymentType = 1
	Payment_SENT           Payment_PaymentType = 2
	Payment_RECEIVED       Payment_PaymentType = 3
	Payment_CLOSED_CHANNEL Payment_PaymentType = 4
)

func (Payment_PaymentType) Descriptor

func (Payment_PaymentType) Enum

func (Payment_PaymentType) EnumDescriptor deprecated

func (Payment_PaymentType) EnumDescriptor() ([]byte, []int)

Deprecated: Use Payment_PaymentType.Descriptor instead.

func (Payment_PaymentType) Number

func (Payment_PaymentType) String

func (x Payment_PaymentType) String() string

func (Payment_PaymentType) Type

type PaymentsList

type PaymentsList struct {
	PaymentsList []*Payment `protobuf:"bytes,1,rep,name=paymentsList,proto3" json:"paymentsList,omitempty"`
	// contains filtered or unexported fields
}

func (*PaymentsList) Descriptor deprecated

func (*PaymentsList) Descriptor() ([]byte, []int)

Deprecated: Use PaymentsList.ProtoReflect.Descriptor instead.

func (*PaymentsList) GetPaymentsList

func (x *PaymentsList) GetPaymentsList() []*Payment

func (*PaymentsList) ProtoMessage

func (*PaymentsList) ProtoMessage()

func (*PaymentsList) ProtoReflect

func (x *PaymentsList) ProtoReflect() protoreflect.Message

func (*PaymentsList) Reset

func (x *PaymentsList) Reset()

func (*PaymentsList) String

func (x *PaymentsList) String() string

type Peers

type Peers struct {
	IsDefault bool     `protobuf:"varint,1,opt,name=isDefault,proto3" json:"isDefault,omitempty"`
	Peer      []string `protobuf:"bytes,2,rep,name=peer,proto3" json:"peer,omitempty"`
	// contains filtered or unexported fields
}

func (*Peers) Descriptor deprecated

func (*Peers) Descriptor() ([]byte, []int)

Deprecated: Use Peers.ProtoReflect.Descriptor instead.

func (*Peers) GetIsDefault

func (x *Peers) GetIsDefault() bool

func (*Peers) GetPeer

func (x *Peers) GetPeer() []string

func (*Peers) ProtoMessage

func (*Peers) ProtoMessage()

func (*Peers) ProtoReflect

func (x *Peers) ProtoReflect() protoreflect.Message

func (*Peers) Reset

func (x *Peers) Reset()

func (*Peers) String

func (x *Peers) String() string

type PushNotificationDetails

type PushNotificationDetails struct {
	DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
	Title    string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`
	Body     string `protobuf:"bytes,3,opt,name=body,proto3" json:"body,omitempty"`
	// contains filtered or unexported fields
}

func (*PushNotificationDetails) Descriptor deprecated

func (*PushNotificationDetails) Descriptor() ([]byte, []int)

Deprecated: Use PushNotificationDetails.ProtoReflect.Descriptor instead.

func (*PushNotificationDetails) GetBody

func (x *PushNotificationDetails) GetBody() string

func (*PushNotificationDetails) GetDeviceId

func (x *PushNotificationDetails) GetDeviceId() string

func (*PushNotificationDetails) GetTitle

func (x *PushNotificationDetails) GetTitle() string

func (*PushNotificationDetails) ProtoMessage

func (*PushNotificationDetails) ProtoMessage()

func (*PushNotificationDetails) ProtoReflect

func (x *PushNotificationDetails) ProtoReflect() protoreflect.Message

func (*PushNotificationDetails) Reset

func (x *PushNotificationDetails) Reset()

func (*PushNotificationDetails) String

func (x *PushNotificationDetails) String() string

type RatchetDecryptRequest

type RatchetDecryptRequest struct {
	SessionID        string `protobuf:"bytes,1,opt,name=sessionID,proto3" json:"sessionID,omitempty"`
	EncryptedMessage string `protobuf:"bytes,2,opt,name=encryptedMessage,proto3" json:"encryptedMessage,omitempty"`
	// contains filtered or unexported fields
}

func (*RatchetDecryptRequest) Descriptor deprecated

func (*RatchetDecryptRequest) Descriptor() ([]byte, []int)

Deprecated: Use RatchetDecryptRequest.ProtoReflect.Descriptor instead.

func (*RatchetDecryptRequest) GetEncryptedMessage

func (x *RatchetDecryptRequest) GetEncryptedMessage() string

func (*RatchetDecryptRequest) GetSessionID

func (x *RatchetDecryptRequest) GetSessionID() string

func (*RatchetDecryptRequest) ProtoMessage

func (*RatchetDecryptRequest) ProtoMessage()

func (*RatchetDecryptRequest) ProtoReflect

func (x *RatchetDecryptRequest) ProtoReflect() protoreflect.Message

func (*RatchetDecryptRequest) Reset

func (x *RatchetDecryptRequest) Reset()

func (*RatchetDecryptRequest) String

func (x *RatchetDecryptRequest) String() string

type RatchetEncryptRequest

type RatchetEncryptRequest struct {
	SessionID string `protobuf:"bytes,1,opt,name=sessionID,proto3" json:"sessionID,omitempty"`
	Message   string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*RatchetEncryptRequest) Descriptor deprecated

func (*RatchetEncryptRequest) Descriptor() ([]byte, []int)

Deprecated: Use RatchetEncryptRequest.ProtoReflect.Descriptor instead.

func (*RatchetEncryptRequest) GetMessage

func (x *RatchetEncryptRequest) GetMessage() string

func (*RatchetEncryptRequest) GetSessionID

func (x *RatchetEncryptRequest) GetSessionID() string

func (*RatchetEncryptRequest) ProtoMessage

func (*RatchetEncryptRequest) ProtoMessage()

func (*RatchetEncryptRequest) ProtoReflect

func (x *RatchetEncryptRequest) ProtoReflect() protoreflect.Message

func (*RatchetEncryptRequest) Reset

func (x *RatchetEncryptRequest) Reset()

func (*RatchetEncryptRequest) String

func (x *RatchetEncryptRequest) String() string

type RatchetSessionInfoReply

type RatchetSessionInfoReply struct {
	SessionID string `protobuf:"bytes,1,opt,name=sessionID,proto3" json:"sessionID,omitempty"`
	Initiated bool   `protobuf:"varint,2,opt,name=initiated,proto3" json:"initiated,omitempty"`
	UserInfo  string `protobuf:"bytes,3,opt,name=userInfo,proto3" json:"userInfo,omitempty"`
	// contains filtered or unexported fields
}

func (*RatchetSessionInfoReply) Descriptor deprecated

func (*RatchetSessionInfoReply) Descriptor() ([]byte, []int)

Deprecated: Use RatchetSessionInfoReply.ProtoReflect.Descriptor instead.

func (*RatchetSessionInfoReply) GetInitiated

func (x *RatchetSessionInfoReply) GetInitiated() bool

func (*RatchetSessionInfoReply) GetSessionID

func (x *RatchetSessionInfoReply) GetSessionID() string

func (*RatchetSessionInfoReply) GetUserInfo

func (x *RatchetSessionInfoReply) GetUserInfo() string

func (*RatchetSessionInfoReply) ProtoMessage

func (*RatchetSessionInfoReply) ProtoMessage()

func (*RatchetSessionInfoReply) ProtoReflect

func (x *RatchetSessionInfoReply) ProtoReflect() protoreflect.Message

func (*RatchetSessionInfoReply) Reset

func (x *RatchetSessionInfoReply) Reset()

func (*RatchetSessionInfoReply) String

func (x *RatchetSessionInfoReply) String() string

type RatchetSessionSetInfoRequest

type RatchetSessionSetInfoRequest struct {
	SessionID string `protobuf:"bytes,1,opt,name=sessionID,proto3" json:"sessionID,omitempty"`
	UserInfo  string `protobuf:"bytes,2,opt,name=userInfo,proto3" json:"userInfo,omitempty"`
	// contains filtered or unexported fields
}

func (*RatchetSessionSetInfoRequest) Descriptor deprecated

func (*RatchetSessionSetInfoRequest) Descriptor() ([]byte, []int)

Deprecated: Use RatchetSessionSetInfoRequest.ProtoReflect.Descriptor instead.

func (*RatchetSessionSetInfoRequest) GetSessionID

func (x *RatchetSessionSetInfoRequest) GetSessionID() string

func (*RatchetSessionSetInfoRequest) GetUserInfo

func (x *RatchetSessionSetInfoRequest) GetUserInfo() string

func (*RatchetSessionSetInfoRequest) ProtoMessage

func (*RatchetSessionSetInfoRequest) ProtoMessage()

func (*RatchetSessionSetInfoRequest) ProtoReflect

func (*RatchetSessionSetInfoRequest) Reset

func (x *RatchetSessionSetInfoRequest) Reset()

func (*RatchetSessionSetInfoRequest) String

type Rate

type Rate struct {
	Coin  string  `protobuf:"bytes,1,opt,name=coin,proto3" json:"coin,omitempty"`
	Value float64 `protobuf:"fixed64,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*Rate) Descriptor deprecated

func (*Rate) Descriptor() ([]byte, []int)

Deprecated: Use Rate.ProtoReflect.Descriptor instead.

func (*Rate) GetCoin

func (x *Rate) GetCoin() string

func (*Rate) GetValue

func (x *Rate) GetValue() float64

func (*Rate) ProtoMessage

func (*Rate) ProtoMessage()

func (*Rate) ProtoReflect

func (x *Rate) ProtoReflect() protoreflect.Message

func (*Rate) Reset

func (x *Rate) Reset()

func (*Rate) String

func (x *Rate) String() string

type Rates

type Rates struct {
	Rates []*Rate `protobuf:"bytes,1,rep,name=rates,proto3" json:"rates,omitempty"`
	// contains filtered or unexported fields
}

func (*Rates) Descriptor deprecated

func (*Rates) Descriptor() ([]byte, []int)

Deprecated: Use Rates.ProtoReflect.Descriptor instead.

func (*Rates) GetRates

func (x *Rates) GetRates() []*Rate

func (*Rates) ProtoMessage

func (*Rates) ProtoMessage()

func (*Rates) ProtoReflect

func (x *Rates) ProtoReflect() protoreflect.Message

func (*Rates) Reset

func (x *Rates) Reset()

func (*Rates) String

func (x *Rates) String() string

type RefundRequest

type RefundRequest struct {
	Address       string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	RefundAddress string `protobuf:"bytes,2,opt,name=refundAddress,proto3" json:"refundAddress,omitempty"`
	TargetConf    int32  `protobuf:"varint,3,opt,name=target_conf,json=targetConf,proto3" json:"target_conf,omitempty"`
	SatPerByte    int64  `protobuf:"varint,4,opt,name=sat_per_byte,json=satPerByte,proto3" json:"sat_per_byte,omitempty"`
	// contains filtered or unexported fields
}

func (*RefundRequest) Descriptor deprecated

func (*RefundRequest) Descriptor() ([]byte, []int)

Deprecated: Use RefundRequest.ProtoReflect.Descriptor instead.

func (*RefundRequest) GetAddress

func (x *RefundRequest) GetAddress() string

func (*RefundRequest) GetRefundAddress

func (x *RefundRequest) GetRefundAddress() string

func (*RefundRequest) GetSatPerByte

func (x *RefundRequest) GetSatPerByte() int64

func (*RefundRequest) GetTargetConf

func (x *RefundRequest) GetTargetConf() int32

func (*RefundRequest) ProtoMessage

func (*RefundRequest) ProtoMessage()

func (*RefundRequest) ProtoReflect

func (x *RefundRequest) ProtoReflect() protoreflect.Message

func (*RefundRequest) Reset

func (x *RefundRequest) Reset()

func (*RefundRequest) String

func (x *RefundRequest) String() string

type RemoveFundReply

type RemoveFundReply struct {
	Txid         string `protobuf:"bytes,1,opt,name=txid,proto3" json:"txid,omitempty"`
	ErrorMessage string `protobuf:"bytes,2,opt,name=errorMessage,proto3" json:"errorMessage,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoveFundReply) Descriptor deprecated

func (*RemoveFundReply) Descriptor() ([]byte, []int)

Deprecated: Use RemoveFundReply.ProtoReflect.Descriptor instead.

func (*RemoveFundReply) GetErrorMessage

func (x *RemoveFundReply) GetErrorMessage() string

func (*RemoveFundReply) GetTxid

func (x *RemoveFundReply) GetTxid() string

func (*RemoveFundReply) ProtoMessage

func (*RemoveFundReply) ProtoMessage()

func (*RemoveFundReply) ProtoReflect

func (x *RemoveFundReply) ProtoReflect() protoreflect.Message

func (*RemoveFundReply) Reset

func (x *RemoveFundReply) Reset()

func (*RemoveFundReply) String

func (x *RemoveFundReply) String() string

type RemoveFundRequest

type RemoveFundRequest struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Amount  int64  `protobuf:"varint,2,opt,name=amount,proto3" json:"amount,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoveFundRequest) Descriptor deprecated

func (*RemoveFundRequest) Descriptor() ([]byte, []int)

Deprecated: Use RemoveFundRequest.ProtoReflect.Descriptor instead.

func (*RemoveFundRequest) GetAddress

func (x *RemoveFundRequest) GetAddress() string

func (*RemoveFundRequest) GetAmount

func (x *RemoveFundRequest) GetAmount() int64

func (*RemoveFundRequest) ProtoMessage

func (*RemoveFundRequest) ProtoMessage()

func (*RemoveFundRequest) ProtoReflect

func (x *RemoveFundRequest) ProtoReflect() protoreflect.Message

func (*RemoveFundRequest) Reset

func (x *RemoveFundRequest) Reset()

func (*RemoveFundRequest) String

func (x *RemoveFundRequest) String() string

type ResetClosedChannelChainInfoReply

type ResetClosedChannelChainInfoReply struct {
	// contains filtered or unexported fields
}

func (*ResetClosedChannelChainInfoReply) Descriptor deprecated

func (*ResetClosedChannelChainInfoReply) Descriptor() ([]byte, []int)

Deprecated: Use ResetClosedChannelChainInfoReply.ProtoReflect.Descriptor instead.

func (*ResetClosedChannelChainInfoReply) ProtoMessage

func (*ResetClosedChannelChainInfoReply) ProtoMessage()

func (*ResetClosedChannelChainInfoReply) ProtoReflect

func (*ResetClosedChannelChainInfoReply) Reset

func (*ResetClosedChannelChainInfoReply) String

type ResetClosedChannelChainInfoRequest

type ResetClosedChannelChainInfoRequest struct {
	ChanPoint   string `protobuf:"bytes,1,opt,name=chanPoint,proto3" json:"chanPoint,omitempty"`
	BlockHeight int64  `protobuf:"varint,2,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	// contains filtered or unexported fields
}

func (*ResetClosedChannelChainInfoRequest) Descriptor deprecated

func (*ResetClosedChannelChainInfoRequest) Descriptor() ([]byte, []int)

Deprecated: Use ResetClosedChannelChainInfoRequest.ProtoReflect.Descriptor instead.

func (*ResetClosedChannelChainInfoRequest) GetBlockHeight

func (x *ResetClosedChannelChainInfoRequest) GetBlockHeight() int64

func (*ResetClosedChannelChainInfoRequest) GetChanPoint

func (x *ResetClosedChannelChainInfoRequest) GetChanPoint() string

func (*ResetClosedChannelChainInfoRequest) ProtoMessage

func (*ResetClosedChannelChainInfoRequest) ProtoMessage()

func (*ResetClosedChannelChainInfoRequest) ProtoReflect

func (*ResetClosedChannelChainInfoRequest) Reset

func (*ResetClosedChannelChainInfoRequest) String

type RestartDaemonReply

type RestartDaemonReply struct {
	// contains filtered or unexported fields
}

func (*RestartDaemonReply) Descriptor deprecated

func (*RestartDaemonReply) Descriptor() ([]byte, []int)

Deprecated: Use RestartDaemonReply.ProtoReflect.Descriptor instead.

func (*RestartDaemonReply) ProtoMessage

func (*RestartDaemonReply) ProtoMessage()

func (*RestartDaemonReply) ProtoReflect

func (x *RestartDaemonReply) ProtoReflect() protoreflect.Message

func (*RestartDaemonReply) Reset

func (x *RestartDaemonReply) Reset()

func (*RestartDaemonReply) String

func (x *RestartDaemonReply) String() string

type RestartDaemonRequest

type RestartDaemonRequest struct {
	// contains filtered or unexported fields
}

func (*RestartDaemonRequest) Descriptor deprecated

func (*RestartDaemonRequest) Descriptor() ([]byte, []int)

Deprecated: Use RestartDaemonRequest.ProtoReflect.Descriptor instead.

func (*RestartDaemonRequest) ProtoMessage

func (*RestartDaemonRequest) ProtoMessage()

func (*RestartDaemonRequest) ProtoReflect

func (x *RestartDaemonRequest) ProtoReflect() protoreflect.Message

func (*RestartDaemonRequest) Reset

func (x *RestartDaemonRequest) Reset()

func (*RestartDaemonRequest) String

func (x *RestartDaemonRequest) String() string

type ReverseSwap

type ReverseSwap struct {
	Id                 string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Invoice            string `protobuf:"bytes,2,opt,name=invoice,proto3" json:"invoice,omitempty"`
	Script             string `protobuf:"bytes,3,opt,name=script,proto3" json:"script,omitempty"`
	LockupAddress      string `protobuf:"bytes,4,opt,name=lockup_address,json=lockupAddress,proto3" json:"lockup_address,omitempty"`
	Preimage           string `protobuf:"bytes,5,opt,name=preimage,proto3" json:"preimage,omitempty"`
	Key                string `protobuf:"bytes,6,opt,name=key,proto3" json:"key,omitempty"`
	ClaimAddress       string `protobuf:"bytes,7,opt,name=claim_address,json=claimAddress,proto3" json:"claim_address,omitempty"`
	LnAmount           int64  `protobuf:"varint,8,opt,name=ln_amount,json=lnAmount,proto3" json:"ln_amount,omitempty"`
	OnchainAmount      int64  `protobuf:"varint,9,opt,name=onchain_amount,json=onchainAmount,proto3" json:"onchain_amount,omitempty"`
	TimeoutBlockHeight int64  `protobuf:"varint,10,opt,name=timeout_block_height,json=timeoutBlockHeight,proto3" json:"timeout_block_height,omitempty"`
	StartBlockHeight   int64  `protobuf:"varint,11,opt,name=start_block_height,json=startBlockHeight,proto3" json:"start_block_height,omitempty"`
	ClaimFee           int64  `protobuf:"varint,12,opt,name=claim_fee,json=claimFee,proto3" json:"claim_fee,omitempty"`
	ClaimTxid          string `protobuf:"bytes,13,opt,name=claim_txid,json=claimTxid,proto3" json:"claim_txid,omitempty"`
	// contains filtered or unexported fields
}

func (*ReverseSwap) Descriptor deprecated

func (*ReverseSwap) Descriptor() ([]byte, []int)

Deprecated: Use ReverseSwap.ProtoReflect.Descriptor instead.

func (*ReverseSwap) GetClaimAddress

func (x *ReverseSwap) GetClaimAddress() string

func (*ReverseSwap) GetClaimFee

func (x *ReverseSwap) GetClaimFee() int64

func (*ReverseSwap) GetClaimTxid

func (x *ReverseSwap) GetClaimTxid() string

func (*ReverseSwap) GetId

func (x *ReverseSwap) GetId() string

func (*ReverseSwap) GetInvoice

func (x *ReverseSwap) GetInvoice() string

func (*ReverseSwap) GetKey

func (x *ReverseSwap) GetKey() string

func (*ReverseSwap) GetLnAmount

func (x *ReverseSwap) GetLnAmount() int64

func (*ReverseSwap) GetLockupAddress

func (x *ReverseSwap) GetLockupAddress() string

func (*ReverseSwap) GetOnchainAmount

func (x *ReverseSwap) GetOnchainAmount() int64

func (*ReverseSwap) GetPreimage

func (x *ReverseSwap) GetPreimage() string

func (*ReverseSwap) GetScript

func (x *ReverseSwap) GetScript() string

func (*ReverseSwap) GetStartBlockHeight

func (x *ReverseSwap) GetStartBlockHeight() int64

func (*ReverseSwap) GetTimeoutBlockHeight

func (x *ReverseSwap) GetTimeoutBlockHeight() int64

func (*ReverseSwap) ProtoMessage

func (*ReverseSwap) ProtoMessage()

func (*ReverseSwap) ProtoReflect

func (x *ReverseSwap) ProtoReflect() protoreflect.Message

func (*ReverseSwap) Reset

func (x *ReverseSwap) Reset()

func (*ReverseSwap) String

func (x *ReverseSwap) String() string

type ReverseSwapClaimFee

type ReverseSwapClaimFee struct {
	Hash string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	Fee  int64  `protobuf:"varint,2,opt,name=fee,proto3" json:"fee,omitempty"`
	// contains filtered or unexported fields
}

func (*ReverseSwapClaimFee) Descriptor deprecated

func (*ReverseSwapClaimFee) Descriptor() ([]byte, []int)

Deprecated: Use ReverseSwapClaimFee.ProtoReflect.Descriptor instead.

func (*ReverseSwapClaimFee) GetFee

func (x *ReverseSwapClaimFee) GetFee() int64

func (*ReverseSwapClaimFee) GetHash

func (x *ReverseSwapClaimFee) GetHash() string

func (*ReverseSwapClaimFee) ProtoMessage

func (*ReverseSwapClaimFee) ProtoMessage()

func (*ReverseSwapClaimFee) ProtoReflect

func (x *ReverseSwapClaimFee) ProtoReflect() protoreflect.Message

func (*ReverseSwapClaimFee) Reset

func (x *ReverseSwapClaimFee) Reset()

func (*ReverseSwapClaimFee) String

func (x *ReverseSwapClaimFee) String() string

type ReverseSwapFees

type ReverseSwapFees struct {
	Percentage float64 `protobuf:"fixed64,1,opt,name=percentage,proto3" json:"percentage,omitempty"`
	Lockup     int64   `protobuf:"varint,2,opt,name=lockup,proto3" json:"lockup,omitempty"`
	Claim      int64   `protobuf:"varint,3,opt,name=claim,proto3" json:"claim,omitempty"`
	// contains filtered or unexported fields
}

func (*ReverseSwapFees) Descriptor deprecated

func (*ReverseSwapFees) Descriptor() ([]byte, []int)

Deprecated: Use ReverseSwapFees.ProtoReflect.Descriptor instead.

func (*ReverseSwapFees) GetClaim

func (x *ReverseSwapFees) GetClaim() int64

func (*ReverseSwapFees) GetLockup

func (x *ReverseSwapFees) GetLockup() int64

func (*ReverseSwapFees) GetPercentage

func (x *ReverseSwapFees) GetPercentage() float64

func (*ReverseSwapFees) ProtoMessage

func (*ReverseSwapFees) ProtoMessage()

func (*ReverseSwapFees) ProtoReflect

func (x *ReverseSwapFees) ProtoReflect() protoreflect.Message

func (*ReverseSwapFees) Reset

func (x *ReverseSwapFees) Reset()

func (*ReverseSwapFees) String

func (x *ReverseSwapFees) String() string

type ReverseSwapInfo

type ReverseSwapInfo struct {
	Min      int64            `protobuf:"varint,1,opt,name=min,proto3" json:"min,omitempty"`
	Max      int64            `protobuf:"varint,2,opt,name=max,proto3" json:"max,omitempty"`
	Fees     *ReverseSwapFees `protobuf:"bytes,3,opt,name=fees,proto3" json:"fees,omitempty"`
	FeesHash string           `protobuf:"bytes,4,opt,name=fees_hash,json=feesHash,proto3" json:"fees_hash,omitempty"`
	// contains filtered or unexported fields
}

func (*ReverseSwapInfo) Descriptor deprecated

func (*ReverseSwapInfo) Descriptor() ([]byte, []int)

Deprecated: Use ReverseSwapInfo.ProtoReflect.Descriptor instead.

func (*ReverseSwapInfo) GetFees

func (x *ReverseSwapInfo) GetFees() *ReverseSwapFees

func (*ReverseSwapInfo) GetFeesHash

func (x *ReverseSwapInfo) GetFeesHash() string

func (*ReverseSwapInfo) GetMax

func (x *ReverseSwapInfo) GetMax() int64

func (*ReverseSwapInfo) GetMin

func (x *ReverseSwapInfo) GetMin() int64

func (*ReverseSwapInfo) ProtoMessage

func (*ReverseSwapInfo) ProtoMessage()

func (*ReverseSwapInfo) ProtoReflect

func (x *ReverseSwapInfo) ProtoReflect() protoreflect.Message

func (*ReverseSwapInfo) Reset

func (x *ReverseSwapInfo) Reset()

func (*ReverseSwapInfo) String

func (x *ReverseSwapInfo) String() string

type ReverseSwapPaymentRequest

type ReverseSwapPaymentRequest struct {
	Hash                    string                   `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	PushNotificationDetails *PushNotificationDetails `` /* 132-byte string literal not displayed */
	Fee                     int64                    `protobuf:"varint,3,opt,name=fee,proto3" json:"fee,omitempty"`
	// contains filtered or unexported fields
}

func (*ReverseSwapPaymentRequest) Descriptor deprecated

func (*ReverseSwapPaymentRequest) Descriptor() ([]byte, []int)

Deprecated: Use ReverseSwapPaymentRequest.ProtoReflect.Descriptor instead.

func (*ReverseSwapPaymentRequest) GetFee

func (x *ReverseSwapPaymentRequest) GetFee() int64

func (*ReverseSwapPaymentRequest) GetHash

func (x *ReverseSwapPaymentRequest) GetHash() string

func (*ReverseSwapPaymentRequest) GetPushNotificationDetails

func (x *ReverseSwapPaymentRequest) GetPushNotificationDetails() *PushNotificationDetails

func (*ReverseSwapPaymentRequest) ProtoMessage

func (*ReverseSwapPaymentRequest) ProtoMessage()

func (*ReverseSwapPaymentRequest) ProtoReflect

func (*ReverseSwapPaymentRequest) Reset

func (x *ReverseSwapPaymentRequest) Reset()

func (*ReverseSwapPaymentRequest) String

func (x *ReverseSwapPaymentRequest) String() string

type ReverseSwapPaymentStatus

type ReverseSwapPaymentStatus struct {
	Hash string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	TxID string `protobuf:"bytes,2,opt,name=txID,proto3" json:"txID,omitempty"`
	Eta  int32  `protobuf:"varint,3,opt,name=eta,proto3" json:"eta,omitempty"`
	// contains filtered or unexported fields
}

func (*ReverseSwapPaymentStatus) Descriptor deprecated

func (*ReverseSwapPaymentStatus) Descriptor() ([]byte, []int)

Deprecated: Use ReverseSwapPaymentStatus.ProtoReflect.Descriptor instead.

func (*ReverseSwapPaymentStatus) GetEta

func (x *ReverseSwapPaymentStatus) GetEta() int32

func (*ReverseSwapPaymentStatus) GetHash

func (x *ReverseSwapPaymentStatus) GetHash() string

func (*ReverseSwapPaymentStatus) GetTxID

func (x *ReverseSwapPaymentStatus) GetTxID() string

func (*ReverseSwapPaymentStatus) ProtoMessage

func (*ReverseSwapPaymentStatus) ProtoMessage()

func (*ReverseSwapPaymentStatus) ProtoReflect

func (x *ReverseSwapPaymentStatus) ProtoReflect() protoreflect.Message

func (*ReverseSwapPaymentStatus) Reset

func (x *ReverseSwapPaymentStatus) Reset()

func (*ReverseSwapPaymentStatus) String

func (x *ReverseSwapPaymentStatus) String() string

type ReverseSwapPaymentStatuses

type ReverseSwapPaymentStatuses struct {
	PaymentsStatus []*ReverseSwapPaymentStatus `protobuf:"bytes,1,rep,name=payments_status,json=paymentsStatus,proto3" json:"payments_status,omitempty"`
	// contains filtered or unexported fields
}

func (*ReverseSwapPaymentStatuses) Descriptor deprecated

func (*ReverseSwapPaymentStatuses) Descriptor() ([]byte, []int)

Deprecated: Use ReverseSwapPaymentStatuses.ProtoReflect.Descriptor instead.

func (*ReverseSwapPaymentStatuses) GetPaymentsStatus

func (x *ReverseSwapPaymentStatuses) GetPaymentsStatus() []*ReverseSwapPaymentStatus

func (*ReverseSwapPaymentStatuses) ProtoMessage

func (*ReverseSwapPaymentStatuses) ProtoMessage()

func (*ReverseSwapPaymentStatuses) ProtoReflect

func (*ReverseSwapPaymentStatuses) Reset

func (x *ReverseSwapPaymentStatuses) Reset()

func (*ReverseSwapPaymentStatuses) String

func (x *ReverseSwapPaymentStatuses) String() string

type ReverseSwapRequest

type ReverseSwapRequest struct {
	Address  string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Amount   int64  `protobuf:"varint,2,opt,name=amount,proto3" json:"amount,omitempty"`
	FeesHash string `protobuf:"bytes,3,opt,name=fees_hash,json=feesHash,proto3" json:"fees_hash,omitempty"`
	// contains filtered or unexported fields
}

func (*ReverseSwapRequest) Descriptor deprecated

func (*ReverseSwapRequest) Descriptor() ([]byte, []int)

Deprecated: Use ReverseSwapRequest.ProtoReflect.Descriptor instead.

func (*ReverseSwapRequest) GetAddress

func (x *ReverseSwapRequest) GetAddress() string

func (*ReverseSwapRequest) GetAmount

func (x *ReverseSwapRequest) GetAmount() int64

func (*ReverseSwapRequest) GetFeesHash

func (x *ReverseSwapRequest) GetFeesHash() string

func (*ReverseSwapRequest) ProtoMessage

func (*ReverseSwapRequest) ProtoMessage()

func (*ReverseSwapRequest) ProtoReflect

func (x *ReverseSwapRequest) ProtoReflect() protoreflect.Message

func (*ReverseSwapRequest) Reset

func (x *ReverseSwapRequest) Reset()

func (*ReverseSwapRequest) String

func (x *ReverseSwapRequest) String() string

type SendWalletCoinsRequest

type SendWalletCoinsRequest struct {
	Address       string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	SatPerByteFee int64  `protobuf:"varint,2,opt,name=satPerByteFee,proto3" json:"satPerByteFee,omitempty"`
	// contains filtered or unexported fields
}

func (*SendWalletCoinsRequest) Descriptor deprecated

func (*SendWalletCoinsRequest) Descriptor() ([]byte, []int)

Deprecated: Use SendWalletCoinsRequest.ProtoReflect.Descriptor instead.

func (*SendWalletCoinsRequest) GetAddress

func (x *SendWalletCoinsRequest) GetAddress() string

func (*SendWalletCoinsRequest) GetSatPerByteFee

func (x *SendWalletCoinsRequest) GetSatPerByteFee() int64

func (*SendWalletCoinsRequest) ProtoMessage

func (*SendWalletCoinsRequest) ProtoMessage()

func (*SendWalletCoinsRequest) ProtoReflect

func (x *SendWalletCoinsRequest) ProtoReflect() protoreflect.Message

func (*SendWalletCoinsRequest) Reset

func (x *SendWalletCoinsRequest) Reset()

func (*SendWalletCoinsRequest) String

func (x *SendWalletCoinsRequest) String() string

type SpontaneousPaymentRequest

type SpontaneousPaymentRequest struct {
	Amount       int64            `protobuf:"varint,1,opt,name=amount,proto3" json:"amount,omitempty"`
	DestNode     string           `protobuf:"bytes,2,opt,name=destNode,proto3" json:"destNode,omitempty"`
	Description  string           `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	GroupKey     string           `protobuf:"bytes,4,opt,name=groupKey,proto3" json:"groupKey,omitempty"`
	GroupName    string           `protobuf:"bytes,5,opt,name=groupName,proto3" json:"groupName,omitempty"`
	FeeLimitMsat int64            `protobuf:"varint,6,opt,name=feeLimitMsat,proto3" json:"feeLimitMsat,omitempty"`
	Tlv          map[int64]string `` /* 148-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*SpontaneousPaymentRequest) Descriptor deprecated

func (*SpontaneousPaymentRequest) Descriptor() ([]byte, []int)

Deprecated: Use SpontaneousPaymentRequest.ProtoReflect.Descriptor instead.

func (*SpontaneousPaymentRequest) GetAmount

func (x *SpontaneousPaymentRequest) GetAmount() int64

func (*SpontaneousPaymentRequest) GetDescription

func (x *SpontaneousPaymentRequest) GetDescription() string

func (*SpontaneousPaymentRequest) GetDestNode

func (x *SpontaneousPaymentRequest) GetDestNode() string

func (*SpontaneousPaymentRequest) GetFeeLimitMsat

func (x *SpontaneousPaymentRequest) GetFeeLimitMsat() int64

func (*SpontaneousPaymentRequest) GetGroupKey

func (x *SpontaneousPaymentRequest) GetGroupKey() string

func (*SpontaneousPaymentRequest) GetGroupName

func (x *SpontaneousPaymentRequest) GetGroupName() string

func (*SpontaneousPaymentRequest) GetTlv

func (x *SpontaneousPaymentRequest) GetTlv() map[int64]string

func (*SpontaneousPaymentRequest) ProtoMessage

func (*SpontaneousPaymentRequest) ProtoMessage()

func (*SpontaneousPaymentRequest) ProtoReflect

func (*SpontaneousPaymentRequest) Reset

func (x *SpontaneousPaymentRequest) Reset()

func (*SpontaneousPaymentRequest) String

func (x *SpontaneousPaymentRequest) String() string

type SuccessAction

type SuccessAction struct {
	Tag         string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Url         string `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
	Message     string `protobuf:"bytes,4,opt,name=message,proto3" json:"message,omitempty"`
	Ciphertext  string `protobuf:"bytes,5,opt,name=ciphertext,proto3" json:"ciphertext,omitempty"`
	Iv          string `protobuf:"bytes,6,opt,name=iv,proto3" json:"iv,omitempty"`
	// contains filtered or unexported fields
}

func (*SuccessAction) Descriptor deprecated

func (*SuccessAction) Descriptor() ([]byte, []int)

Deprecated: Use SuccessAction.ProtoReflect.Descriptor instead.

func (*SuccessAction) GetCiphertext

func (x *SuccessAction) GetCiphertext() string

func (*SuccessAction) GetDescription

func (x *SuccessAction) GetDescription() string

func (*SuccessAction) GetIv

func (x *SuccessAction) GetIv() string

func (*SuccessAction) GetMessage

func (x *SuccessAction) GetMessage() string

func (*SuccessAction) GetTag

func (x *SuccessAction) GetTag() string

func (*SuccessAction) GetUrl

func (x *SuccessAction) GetUrl() string

func (*SuccessAction) ProtoMessage

func (*SuccessAction) ProtoMessage()

func (*SuccessAction) ProtoReflect

func (x *SuccessAction) ProtoReflect() protoreflect.Message

func (*SuccessAction) Reset

func (x *SuccessAction) Reset()

func (*SuccessAction) String

func (x *SuccessAction) String() string

type SwapAddressInfo

type SwapAddressInfo struct {
	Address                 string    `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	PaymentHash             string    `protobuf:"bytes,2,opt,name=PaymentHash,proto3" json:"PaymentHash,omitempty"`
	ConfirmedAmount         int64     `protobuf:"varint,3,opt,name=ConfirmedAmount,proto3" json:"ConfirmedAmount,omitempty"`
	ConfirmedTransactionIds []string  `protobuf:"bytes,4,rep,name=ConfirmedTransactionIds,proto3" json:"ConfirmedTransactionIds,omitempty"`
	PaidAmount              int64     `protobuf:"varint,5,opt,name=PaidAmount,proto3" json:"PaidAmount,omitempty"`
	LockHeight              uint32    `protobuf:"varint,6,opt,name=lockHeight,proto3" json:"lockHeight,omitempty"`
	ErrorMessage            string    `protobuf:"bytes,7,opt,name=errorMessage,proto3" json:"errorMessage,omitempty"`
	LastRefundTxID          string    `protobuf:"bytes,8,opt,name=lastRefundTxID,proto3" json:"lastRefundTxID,omitempty"`
	SwapError               SwapError `protobuf:"varint,9,opt,name=swapError,proto3,enum=data.SwapError" json:"swapError,omitempty"`
	FundingTxID             string    `protobuf:"bytes,10,opt,name=FundingTxID,proto3" json:"FundingTxID,omitempty"`
	HoursToUnlock           float32   `protobuf:"fixed32,11,opt,name=hoursToUnlock,proto3" json:"hoursToUnlock,omitempty"`
	NonBlocking             bool      `protobuf:"varint,12,opt,name=nonBlocking,proto3" json:"nonBlocking,omitempty"`
	// contains filtered or unexported fields
}

func (*SwapAddressInfo) Descriptor deprecated

func (*SwapAddressInfo) Descriptor() ([]byte, []int)

Deprecated: Use SwapAddressInfo.ProtoReflect.Descriptor instead.

func (*SwapAddressInfo) GetAddress

func (x *SwapAddressInfo) GetAddress() string

func (*SwapAddressInfo) GetConfirmedAmount

func (x *SwapAddressInfo) GetConfirmedAmount() int64

func (*SwapAddressInfo) GetConfirmedTransactionIds

func (x *SwapAddressInfo) GetConfirmedTransactionIds() []string

func (*SwapAddressInfo) GetErrorMessage

func (x *SwapAddressInfo) GetErrorMessage() string

func (*SwapAddressInfo) GetFundingTxID

func (x *SwapAddressInfo) GetFundingTxID() string

func (*SwapAddressInfo) GetHoursToUnlock

func (x *SwapAddressInfo) GetHoursToUnlock() float32

func (*SwapAddressInfo) GetLastRefundTxID

func (x *SwapAddressInfo) GetLastRefundTxID() string

func (*SwapAddressInfo) GetLockHeight

func (x *SwapAddressInfo) GetLockHeight() uint32

func (*SwapAddressInfo) GetNonBlocking

func (x *SwapAddressInfo) GetNonBlocking() bool

func (*SwapAddressInfo) GetPaidAmount

func (x *SwapAddressInfo) GetPaidAmount() int64

func (*SwapAddressInfo) GetPaymentHash

func (x *SwapAddressInfo) GetPaymentHash() string

func (*SwapAddressInfo) GetSwapError

func (x *SwapAddressInfo) GetSwapError() SwapError

func (*SwapAddressInfo) ProtoMessage

func (*SwapAddressInfo) ProtoMessage()

func (*SwapAddressInfo) ProtoReflect

func (x *SwapAddressInfo) ProtoReflect() protoreflect.Message

func (*SwapAddressInfo) Reset

func (x *SwapAddressInfo) Reset()

func (*SwapAddressInfo) String

func (x *SwapAddressInfo) String() string

type SwapAddressList

type SwapAddressList struct {
	Addresses []*SwapAddressInfo `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"`
	// contains filtered or unexported fields
}

func (*SwapAddressList) Descriptor deprecated

func (*SwapAddressList) Descriptor() ([]byte, []int)

Deprecated: Use SwapAddressList.ProtoReflect.Descriptor instead.

func (*SwapAddressList) GetAddresses

func (x *SwapAddressList) GetAddresses() []*SwapAddressInfo

func (*SwapAddressList) ProtoMessage

func (*SwapAddressList) ProtoMessage()

func (*SwapAddressList) ProtoReflect

func (x *SwapAddressList) ProtoReflect() protoreflect.Message

func (*SwapAddressList) Reset

func (x *SwapAddressList) Reset()

func (*SwapAddressList) String

func (x *SwapAddressList) String() string

type SwapError

type SwapError int32
const (
	SwapError_NO_ERROR                SwapError = 0
	SwapError_FUNDS_EXCEED_LIMIT      SwapError = 1
	SwapError_TX_TOO_SMALL            SwapError = 2
	SwapError_INVOICE_AMOUNT_MISMATCH SwapError = 3
	SwapError_SWAP_EXPIRED            SwapError = 4
)

func (SwapError) Descriptor

func (SwapError) Descriptor() protoreflect.EnumDescriptor

func (SwapError) Enum

func (x SwapError) Enum() *SwapError

func (SwapError) EnumDescriptor deprecated

func (SwapError) EnumDescriptor() ([]byte, []int)

Deprecated: Use SwapError.Descriptor instead.

func (SwapError) Number

func (x SwapError) Number() protoreflect.EnumNumber

func (SwapError) String

func (x SwapError) String() string

func (SwapError) Type

type SweepAllCoinsTransactions

type SweepAllCoinsTransactions struct {
	Amt          int64                         `protobuf:"varint,1,opt,name=amt,proto3" json:"amt,omitempty"`
	Transactions map[int32]*TransactionDetails `` /* 166-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*SweepAllCoinsTransactions) Descriptor deprecated

func (*SweepAllCoinsTransactions) Descriptor() ([]byte, []int)

Deprecated: Use SweepAllCoinsTransactions.ProtoReflect.Descriptor instead.

func (*SweepAllCoinsTransactions) GetAmt

func (x *SweepAllCoinsTransactions) GetAmt() int64

func (*SweepAllCoinsTransactions) GetTransactions

func (x *SweepAllCoinsTransactions) GetTransactions() map[int32]*TransactionDetails

func (*SweepAllCoinsTransactions) ProtoMessage

func (*SweepAllCoinsTransactions) ProtoMessage()

func (*SweepAllCoinsTransactions) ProtoReflect

func (*SweepAllCoinsTransactions) Reset

func (x *SweepAllCoinsTransactions) Reset()

func (*SweepAllCoinsTransactions) String

func (x *SweepAllCoinsTransactions) String() string

type TorConfig

type TorConfig struct {
	Control string `protobuf:"bytes,1,opt,name=control,proto3" json:"control,omitempty"`
	Http    string `protobuf:"bytes,2,opt,name=http,proto3" json:"http,omitempty"`
	Socks   string `protobuf:"bytes,3,opt,name=socks,proto3" json:"socks,omitempty"`
	// contains filtered or unexported fields
}

func (*TorConfig) Descriptor deprecated

func (*TorConfig) Descriptor() ([]byte, []int)

Deprecated: Use TorConfig.ProtoReflect.Descriptor instead.

func (*TorConfig) GetControl

func (x *TorConfig) GetControl() string

func (*TorConfig) GetHttp

func (x *TorConfig) GetHttp() string

func (*TorConfig) GetSocks

func (x *TorConfig) GetSocks() string

func (*TorConfig) ProtoMessage

func (*TorConfig) ProtoMessage()

func (*TorConfig) ProtoReflect

func (x *TorConfig) ProtoReflect() protoreflect.Message

func (*TorConfig) Reset

func (x *TorConfig) Reset()

func (*TorConfig) String

func (x *TorConfig) String() string

type TransactionDetails

type TransactionDetails struct {
	Tx     []byte `protobuf:"bytes,1,opt,name=tx,proto3" json:"tx,omitempty"`
	TxHash string `protobuf:"bytes,2,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"`
	Fees   int64  `protobuf:"varint,3,opt,name=fees,proto3" json:"fees,omitempty"`
	// contains filtered or unexported fields
}

func (*TransactionDetails) Descriptor deprecated

func (*TransactionDetails) Descriptor() ([]byte, []int)

Deprecated: Use TransactionDetails.ProtoReflect.Descriptor instead.

func (*TransactionDetails) GetFees

func (x *TransactionDetails) GetFees() int64

func (*TransactionDetails) GetTx

func (x *TransactionDetails) GetTx() []byte

func (*TransactionDetails) GetTxHash

func (x *TransactionDetails) GetTxHash() string

func (*TransactionDetails) ProtoMessage

func (*TransactionDetails) ProtoMessage()

func (*TransactionDetails) ProtoReflect

func (x *TransactionDetails) ProtoReflect() protoreflect.Message

func (*TransactionDetails) Reset

func (x *TransactionDetails) Reset()

func (*TransactionDetails) String

func (x *TransactionDetails) String() string

type TxSpentURL

type TxSpentURL struct {
	URL       string `protobuf:"bytes,1,opt,name=URL,proto3" json:"URL,omitempty"`
	IsDefault bool   `protobuf:"varint,2,opt,name=isDefault,proto3" json:"isDefault,omitempty"`
	Disabled  bool   `protobuf:"varint,3,opt,name=disabled,proto3" json:"disabled,omitempty"`
	// contains filtered or unexported fields
}

func (*TxSpentURL) Descriptor deprecated

func (*TxSpentURL) Descriptor() ([]byte, []int)

Deprecated: Use TxSpentURL.ProtoReflect.Descriptor instead.

func (*TxSpentURL) GetDisabled

func (x *TxSpentURL) GetDisabled() bool

func (*TxSpentURL) GetIsDefault

func (x *TxSpentURL) GetIsDefault() bool

func (*TxSpentURL) GetURL

func (x *TxSpentURL) GetURL() string

func (*TxSpentURL) ProtoMessage

func (*TxSpentURL) ProtoMessage()

func (*TxSpentURL) ProtoReflect

func (x *TxSpentURL) ProtoReflect() protoreflect.Message

func (*TxSpentURL) Reset

func (x *TxSpentURL) Reset()

func (*TxSpentURL) String

func (x *TxSpentURL) String() string

type UnimplementedBreezAPIServer

type UnimplementedBreezAPIServer struct {
}

UnimplementedBreezAPIServer must be embedded to have forward compatible implementations.

func (UnimplementedBreezAPIServer) AddFundInit

func (UnimplementedBreezAPIServer) AddInvoice

func (UnimplementedBreezAPIServer) CloseChannels

func (UnimplementedBreezAPIServer) ConnectToLSP

func (UnimplementedBreezAPIServer) GetFundStatus

func (UnimplementedBreezAPIServer) GetLSPList

func (UnimplementedBreezAPIServer) ListPayments

func (UnimplementedBreezAPIServer) PayInvoice

func (UnimplementedBreezAPIServer) RestartDaemon

type UnsafeBreezAPIServer

type UnsafeBreezAPIServer interface {
	// contains filtered or unexported methods
}

UnsafeBreezAPIServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to BreezAPIServer will result in compilation errors.

type UnspendLockupInformation

type UnspendLockupInformation struct {
	HeightHint   uint32 `protobuf:"varint,1,opt,name=height_hint,json=heightHint,proto3" json:"height_hint,omitempty"`
	LockupScript []byte `protobuf:"bytes,2,opt,name=lockup_script,json=lockupScript,proto3" json:"lockup_script,omitempty"`
	ClaimTxHash  []byte `protobuf:"bytes,3,opt,name=claim_tx_hash,json=claimTxHash,proto3" json:"claim_tx_hash,omitempty"`
	// contains filtered or unexported fields
}

func (*UnspendLockupInformation) Descriptor deprecated

func (*UnspendLockupInformation) Descriptor() ([]byte, []int)

Deprecated: Use UnspendLockupInformation.ProtoReflect.Descriptor instead.

func (*UnspendLockupInformation) GetClaimTxHash

func (x *UnspendLockupInformation) GetClaimTxHash() []byte

func (*UnspendLockupInformation) GetHeightHint

func (x *UnspendLockupInformation) GetHeightHint() uint32

func (*UnspendLockupInformation) GetLockupScript

func (x *UnspendLockupInformation) GetLockupScript() []byte

func (*UnspendLockupInformation) ProtoMessage

func (*UnspendLockupInformation) ProtoMessage()

func (*UnspendLockupInformation) ProtoReflect

func (x *UnspendLockupInformation) ProtoReflect() protoreflect.Message

func (*UnspendLockupInformation) Reset

func (x *UnspendLockupInformation) Reset()

func (*UnspendLockupInformation) String

func (x *UnspendLockupInformation) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL