import {SCToken, TokenAmount} from "../Tokens"; import {ChainType} from "@atomiqlabs/base"; export function isSwapWithGasDrop(swap: any): swap is ISwapWithGasDrop { return swap!=null && typeof(swap.getGasDropOutput)==="function"; } export interface ISwapWithGasDrop { getGasDropOutput(): TokenAmount>; }