interface TreeAccountData {
    result: string;
    value: {
        balance: string;
        chain_id: number;
        last_index: number;
        last_slot: number;
        max_fee_per_gas: string;
        max_priority_fee_per_gas: string;
        payer: string;
        pubkey: string;
        status: string;
        transactions: TreeAccountTransactionData[];
    };
}

Properties

Properties

result: string
value: {
    balance: string;
    chain_id: number;
    last_index: number;
    last_slot: number;
    max_fee_per_gas: string;
    max_priority_fee_per_gas: string;
    payer: string;
    pubkey: string;
    status: string;
    transactions: TreeAccountTransactionData[];
}