diff --git a/packages/client-coinbase/src/types.ts b/packages/client-coinbase/src/types.ts index a60b9f422a0..5845460332c 100644 --- a/packages/client-coinbase/src/types.ts +++ b/packages/client-coinbase/src/types.ts @@ -16,4 +16,4 @@ export interface TradeAction { export const blockExplorerBaseTxUrl = (txHash: string) => `https://basescan.org/tx/${txHash}` export const blockExplorerBaseAddressUrl = (address: string) => `https://basescan.org/address/${address}` -export const supportedTickers = ["ETH", "WETH", "XRP"] \ No newline at end of file +export const supportedTickers = ["ETH", "WETH"] \ No newline at end of file diff --git a/packages/plugin-0x/src/actions/getQuote.ts b/packages/plugin-0x/src/actions/getQuote.ts index 4b473706313..312f363e18d 100644 --- a/packages/plugin-0x/src/actions/getQuote.ts +++ b/packages/plugin-0x/src/actions/getQuote.ts @@ -340,8 +340,6 @@ export const formatRouteInfo = (quote: GetQuoteResponse): string[] => { }; export const getQuoteObj = async (runtime: IAgentRuntime, priceInquiry: PriceInquiry, address: string) => { - elizaLogger.info('inside of getQuoteObj') - // elizaLogger.info('priceInquiry ', JSON.stringify(priceInquiry)) const { sellTokenObject, sellAmountBaseUnits, @@ -361,7 +359,6 @@ export const getQuoteObj = async (runtime: IAgentRuntime, priceInquiry: PriceInq chainId: chainId, taker: address, })) as GetQuoteResponse; - elizaLogger.info("Quote:", quote); if (!quote.liquidityAvailable) { elizaLogger.info("No liquidity available for this swap. Please try again with a different token or amount."); return;