Type alias GetChannelsResponseType
GetChannelsResponseType: {
all: {
balance: string;
channelEpoch: number;
channelId: string;
closureTime: number;
destinationAddress: string;
destinationPeerId: string;
sourceAddress: string;
sourcePeerId: string;
status: "Open" | "PendingToClose" | "Closed";
ticketIndex: string;
}[];
incoming: {
balance: string;
id: string;
peerAddress: string;
status: "Open" | "PendingToClose" | "Closed";
}[];
outgoing: {
balance: string;
id: string;
peerAddress: string;
status: "Open" | "PendingToClose" | "Closed";
}[];
}
Type declaration
all: {
balance: string;
channelEpoch: number;
channelId: string;
closureTime: number;
destinationAddress: string;
destinationPeerId: string;
sourceAddress: string;
sourcePeerId: string;
status: "Open" | "PendingToClose" | "Closed";
ticketIndex: string;
}[]
incoming: {
balance: string;
id: string;
peerAddress: string;
status: "Open" | "PendingToClose" | "Closed";
}[]
outgoing: {
balance: string;
id: string;
peerAddress: string;
status: "Open" | "PendingToClose" | "Closed";
}[]