export type RefererInfoDto = {
    userAddress: string;
    hasReferer: boolean;
    refererAddress?: string;
    nodeAddress?: string;
    status?: string;
    intendedBondAmount?: number;
    realBond?: number;
    txId?: string;
    height?: number;
    timestamp?: string;
};
