AccountIndexerRequestArgs: BlockchainRequestArgs & IndexerAccountPartitionRequestArgs & {
    index: {
        logs?: boolean | Omit<AccountIndexerLogRequestArgs, "type" | "account" | "blockchainId">;
        state?: boolean | Omit<AccountIndexerStateRequestArgs, "type" | "account" | "blockchainId">;
        transactions?: boolean | Omit<AccountIndexerTransactionRequestArgs, "type" | "account" | "blockchainId">;
    };
}

Generated using TypeDoc