Type alias StackerInfo

StackerInfo: {
    stacked: false;
} | {
    details: {
        first_reward_cycle: number;
        lock_period: number;
        pox_address: {
            hashbytes: Uint8Array;
            version: Uint8Array;
        };
        unlock_height: number;
    };
    stacked: true;
}

Generated using TypeDoc