@leapwallet/embedded-wallet-sdk-react
Version:
A react library for integrating metamask snaps on a cosmos dApp
9 lines (8 loc) • 352 B
TypeScript
/// <reference types="react" />
interface BalanceAmountContextType {
totalCurrencyValue: number;
setTotalCurrencyValue: React.Dispatch<React.SetStateAction<number>>;
}
export declare const BalanceAmountProvider: React.FC<React.PropsWithChildren<object>>;
export declare const useBalanceAmountContext: () => BalanceAmountContextType;
export {};