interface IPeer {
    connection: {
        string: string;
    };
    identity: string;
    status: {
        online: boolean;
        ready: boolean;
        timestamp: number;
    };
    sync: {
        block: number;
        block_hash: string;
        status: boolean;
    };
    verification: {
        message: string;
        status: boolean;
        timestamp: number;
    };
}

Properties

connection: {
    string: string;
}
identity: string
status: {
    online: boolean;
    ready: boolean;
    timestamp: number;
}
sync: {
    block: number;
    block_hash: string;
    status: boolean;
}
verification: {
    message: string;
    status: boolean;
    timestamp: number;
}