Interface deBridgeQuoteResponse

interface deBridgeQuoteResponse {
    estimation: {
        dstChainTokenOut: {
            amount: string;
            decimals: number;
            symbol: string;
            tokenAddress: string;
        };
        fees: { dstChainTokenOut: string; srcChainTokenIn: string };
        srcChainTokenIn: {
            amount: string;
            decimals: number;
            symbol: string;
            tokenAddress: string;
        };
    };
}

Properties

Properties

estimation: {
    dstChainTokenOut: {
        amount: string;
        decimals: number;
        symbol: string;
        tokenAddress: string;
    };
    fees: { dstChainTokenOut: string; srcChainTokenIn: string };
    srcChainTokenIn: {
        amount: string;
        decimals: number;
        symbol: string;
        tokenAddress: string;
    };
}