@daimo/pay
Version:
Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.
30 lines (29 loc) • 838 B
TypeScript
export declare function setInWalletPaymentUrlFromApiUrl(apiUrl: string): void;
export type WalletConfigProps = {
id?: string;
name?: string;
shortName?: string;
icon?: string | React.ReactNode;
iconConnector?: React.ReactNode;
iconShape?: "squircle" | "circle" | "square";
iconShouldShrink?: boolean;
downloadUrls?: {
download?: string;
website?: string;
desktop?: string;
android?: string;
ios?: string;
chrome?: string;
firefox?: string;
brave?: string;
edge?: string;
safari?: string;
};
deeplinkScheme?: string;
getDaimoPayDeeplink?: (payId: string) => string;
showInMobileConnectors?: boolean;
isSolanaOnly?: boolean;
};
export declare const walletConfigs: {
[rdns: string]: WalletConfigProps;
};