type PayOnChainTransactionDetails = { amount: string; amountUSDCents: number; amountWei: string; completedAt?: string; explorerLink?: string; token: PayTokenInfo; transactionHash: string;};
type amount = string;
type amountUSDCents = number;
type amountWei = string;
type completedAt = string;
type explorerLink = string;
type token = PayTokenInfo;
type transactionHash = string;