Interface BlockchainAccountInterface

interface BlockchainAccountInterface {
    account_name: string;
    core_liquid_balance?: string;
    cpu_limit: AccountResourceInfo;
    cpu_weight: string;
    created: string;
    head_block_num: number;
    head_block_time: string;
    last_code_update: string;
    net_limit: AccountResourceInfo;
    net_weight: string;
    permissions: Permission[];
    privileged: boolean;
    ram_quota: number;
    ram_usage: number;
    refund_request: null | RefundRequest;
    rex_info: any;
    self_delegated_bandwidth: null | ResourceDelegation;
    total_resources: null | ResourceOverview;
    voter_info: any;
}

Properties

account_name: string
core_liquid_balance?: string
cpu_weight: string
created: string
head_block_num: number
head_block_time: string
last_code_update: string
net_weight: string
permissions: Permission[]
privileged: boolean
ram_quota: number
ram_usage: number
refund_request: null | RefundRequest
rex_info: any
self_delegated_bandwidth: null | ResourceDelegation
total_resources: null | ResourceOverview
voter_info: any