2024-04-09 14:37:10 -04:00
|
|
|
import React from 'react';
|
2024-04-17 21:05:48 -04:00
|
|
|
import { TWallet } from '../class/wallets/types';
|
2024-04-09 14:37:10 -04:00
|
|
|
|
|
|
|
export const isBalanceDisplayAllowed = async (): Promise<boolean> => {
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const setBalanceDisplayAllowed = async (value: boolean): Promise<void> => {};
|
|
|
|
|
2024-04-17 21:05:48 -04:00
|
|
|
export const syncWidgetBalanceWithWallets = async (_wallets: TWallet[], _walletsInitialized: boolean): Promise<void> => {};
|
|
|
|
|
2024-04-09 14:37:10 -04:00
|
|
|
const WidgetCommunication: React.FC = () => {
|
|
|
|
return null; // This component does not render anything.
|
|
|
|
};
|
|
|
|
|
|
|
|
export default WidgetCommunication;
|