Skip to main content

verify

{ success: true; payer: string } | { success: false; error: string }

settle

{ success: true; txHash: string; network: string } | { success: false; error: string }

supported

type SupportedResponse =
  | {
      success: true;
      chains: number[];
      tokens: {
        address: string;
        supportedMethods: ("eip3009" | "permit" | "permit2")[];
      }[];
    }
  | { success: false; error: string };