Type Alias JsonRpcIndexerFindTransactionsResponse

JsonRpcIndexerFindTransactionsResponse: {
    last_cursor: string;
    objects: {
        tx_hash: Hex;
        block_number: Hex;
        tx_index: Hex;
        io_type: "input" | "output";
        io_index: Hex;
    }[];
}