MSBD5017-Depin-WebClient/app/Components/Util.tsx

23 lines
390 B
TypeScript

export interface Node {
ip: string;
port: number;
traffic: number;
price : number;
rating : number;
}
export interface NodeInfo {
ipAddress: string;
port: number;
pricePerMinute : BigInt;
reputationScore : BigInt;
totalMinutesServed : BigInt;
totalEarnings : BigInt;
}
export interface PaymentChannelInfo {
balance: BigInt;
nonce: BigInt;
isActive: boolean;
}