rubic-sdk-next
Version:
Simplify dApp creation
14 lines (13 loc) • 525 B
TypeScript
import { PriceTokenAmount } from '../../../../../../common/tokens';
import { EvmOnChainTrade } from '../../../../../on-chain/calculation-manager/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;
}