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