PaymentInfo

type PaymentInfo = Prettify<
{
chain: Chain;
feePayer?: "sender" | "receiver";
sellerAddress: string;
token?: Partial<TokenInfo> & { address: string };
} & ({ amount: string } | { amountWei: bigint })
>;