UNPKG

@daimo/pay

Version:

Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.

10 lines (9 loc) 456 B
/** * LocalStorage helper functions to save and retrieve data on a per-app basis * e.g recently connected wallets, transactions, etc. */ export declare const save: (storageKey: string, data: any[]) => any; export declare const get: (storageKey: string) => any; export declare const add: (storageKey: string, item: any) => any; export declare const remove: (storageKey: string, item: any) => any; export declare const clear: (storageKey: string) => any;