Newer
Older
CrypticOreWallet / src / store / actions / index.ts
@Drew Lemmy Drew Lemmy on 22 Feb 2021 634 bytes chore: update file headers
// Copyright (c) 2020-2021 Drew Lemmy
// This file is part of KristWeb 2 under GPL-3.0.
// Full details: https://github.com/tmpim/KristWeb2/blob/master/LICENSE.txt
import * as walletManagerActions from "./WalletManagerActions";
import * as walletsActions from "./WalletsActions";
import * as settingsActions from "./SettingsActions";
import * as websocketActions from "./WebsocketActions";
import * as nodeActions from "./NodeActions";

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