Skip to content

Commit

Permalink
Merge pull request #784 from rainlanguage/2024-08-23-quote-fix
Browse files Browse the repository at this point in the history
quote fix
  • Loading branch information
hardyjosh authored Aug 23, 2024
2 parents 8f76973 + 26e970f commit 0cfd5a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tauri-app/src-tauri/src/commands/order_quote.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::error::{CommandError, CommandResult};
use alloy::primitives::{Address, U256};
use rain_orderbook_quote::{BatchQuoteSpec, OrderQuoteValue, QuoteSpec};
use rain_orderbook_subgraph_client::types::orders_list;
use rain_orderbook_subgraph_client::types::order_detail;
use serde::{Deserialize, Serialize};
use typeshare::typeshare;

Expand All @@ -16,7 +16,7 @@ pub struct BatchOrderQuotesResponse {

#[tauri::command]
pub async fn batch_order_quotes(
orders: Vec<orders_list::Order>,
orders: Vec<order_detail::Order>,
orderbook: Address,
subgraph_url: String,
rpc_url: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import type { Order } from '$lib/typeshare/orderDetail';
import { QKEY_ORDER_QUOTE } from '$lib/queries/keys';
import { batchOrderQuotes } from '$lib/services/orderQuote';
import { batchOrderQuotes } from '$lib/queries/orderQuote';
import { formatUnits } from 'viem';
import { createQuery } from '@tanstack/svelte-query';
Expand Down
File renamed without changes.

0 comments on commit 0cfd5a6

Please sign in to comment.