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;
}

Type declaration

  • stacked: false

Type declaration

  • details: {
        first_reward_cycle: number;
        lock_period: number;
        pox_address: {
            hashbytes: Uint8Array;
            version: Uint8Array;
        };
        unlock_height: number;
    }
    • first_reward_cycle: number
    • lock_period: number
    • pox_address: {
          hashbytes: Uint8Array;
          version: Uint8Array;
      }
      • hashbytes: Uint8Array
      • version: Uint8Array
    • unlock_height: number
  • stacked: true

Generated using TypeDoc