rubic-sdk
Version:
Simplify dApp creation
14 lines (13 loc) • 535 B
TypeScript
import { PriceTokenAmount } from "../../../../../../common/tokens";
import { EvmOnChainTrade } from "../../../../../on-chain/calculation-manager/providers/common/on-chain-trade/evm-on-chain-trade/evm-on-chain-trade";
export interface ProxyBridgeParams {
walletAddress: string;
fromTokenAmount: PriceTokenAmount;
toTokenAmount: PriceTokenAmount;
toAddress?: string;
srcChainTrade: EvmOnChainTrade | null;
providerAddress: string;
type: string;
fromAddress: string;
dstChainTrade?: EvmOnChainTrade;
}