Type alias DelegationInfo
 
DelegationInfo: { 
    delegated: false; 
} | { 
    delegated: true; 
    details: { 
        amount_micro_stx: bigint; 
        delegated_to: string; 
        pox_address?: { 
            hashbytes: Uint8Array; 
            version: number; 
        }; 
        until_burn_ht?: number; 
    }; 
}
Type declaration
- 
delegated: true
 
- 
details: { 
    amount_micro_stx: bigint; 
    delegated_to: string; 
    pox_address?: { 
        hashbytes: Uint8Array; 
        version: number; 
    }; 
    until_burn_ht?: number; 
}
- 
amount_micro_stx: bigint
 
- 
delegated_to: string
 
- 
Optional pox_address?: { 
    hashbytes: Uint8Array; 
    version: number; 
}
- 
hashbytes: Uint8Array
 
- 
version: number
 
 
- 
Optional until_burn_ht?: number