interface Node {
    address: string;
    gigabytePrices: Price[];
    hourlyPrices: Price[];
    inactiveAt?: Date;
    remoteAddrs: string[];
    status: Status;
    statusAt?: Date;
}

Properties

address: string
gigabytePrices: Price[]
hourlyPrices: Price[]
inactiveAt?: Date
remoteAddrs: string[]
status: Status
statusAt?: Date

Generated using TypeDoc