Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
monilpat committed Feb 7, 2025
1 parent bd7a7b4 commit 784dc8b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion packages/client-coinbase/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
export const supportedTickers = ["ETH", "WETH"]
3 changes: 0 additions & 3 deletions packages/plugin-0x/src/actions/getQuote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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;
Expand Down

0 comments on commit 784dc8b

Please sign in to comment.