Skip to main content
import { combineHooks, Logger, PaymentPreference } from '@armory-sh/client-hooks';

const hooks = combineHooks(
  PaymentPreference.chain(['base']),
  [PaymentPreference.token(['USDC'])],
  PaymentPreference.cheapest(),
  Logger.console(),
  null
);