Skip to content

Commit

Permalink
fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
rouzwelt committed Feb 19, 2025
1 parent 42d9bf3 commit bef8cbc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/ui-components/src/lib/types/modal.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { OrderSubgraph } from '@rainlanguage/orderbook/js_api';
import type { SgOrder } from '@rainlanguage/orderbook/js_api';
import type { DepositOrWithdrawArgs, OrderRemoveArgs, DeploymentArgs } from './transaction';

export type DepositOrWithdrawModalProps = {
Expand All @@ -21,7 +21,7 @@ export type DisclaimerModalProps = {
onAccept: () => void;
};
export type QuoteDebugModalHandler = (
order: OrderSubgraph,
order: SgOrder,
rpcUrl: string,
orderbook: string,
inputIOIndex: number,
Expand Down
6 changes: 3 additions & 3 deletions packages/ui-components/src/lib/types/transaction.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { ExtendedApprovalCalldata } from '$lib/stores/transactionStore';
import type { DepositAndAddOrderCalldataResult } from '@rainlanguage/orderbook/js_api';
import type { Hex } from 'viem';
import type { OrderSubgraph, Vault } from '@rainlanguage/orderbook/js_api';
import type { SgOrder, SgVault } from '@rainlanguage/orderbook/js_api';

export type DeploymentArgs = {
approvals: ExtendedApprovalCalldata[];
Expand All @@ -13,7 +13,7 @@ export type DeploymentArgs = {
};

export type DepositOrWithdrawArgs = {
vault: Vault;
vault: SgVault;
onDepositOrWithdraw: () => void;
action: 'deposit' | 'withdraw';
chainId: number;
Expand All @@ -22,7 +22,7 @@ export type DepositOrWithdrawArgs = {
};

export type OrderRemoveArgs = {
order: OrderSubgraph;
order: SgOrder;
onRemove: () => void;
chainId: number;
orderbookAddress: Hex;
Expand Down

0 comments on commit bef8cbc

Please sign in to comment.