Newer
Older
CrypticOreWallet / src / store / actions / index.ts
@Drew Lemmy Drew Lemmy on 19 Feb 2021 403 bytes feat: sync balances with websocket
import * as walletManagerActions from "./WalletManagerActions";
import * as walletsActions from "./WalletsActions";
import * as settingsActions from "./SettingsActions";
import * as websocketActions from "./WebsocketActions";

const RootAction = {
  walletManager: walletManagerActions,
  wallets: walletsActions,
  settings: settingsActions,
  websocket: websocketActions
};
export default RootAction;