Newer
Older
CrypticOreWallet / src / store / constants.ts
@Drew Lemmy Drew Lemmy on 19 Feb 2021 576 bytes feat: sync balances with websocket
// Wallet Manager
// ---
export const AUTH_MASTER_PASSWORD = "AUTH_MASTER_PASSWORD";
export const SET_MASTER_PASSWORD = "SET_MASTER_PASSWORD";

// Wallets
// ---
export const LOAD_WALLETS = "LOAD_WALLETS";
export const ADD_WALLET = "ADD_WALLET";
export const REMOVE_WALLET = "REMOVE_WALLET";
export const UPDATE_WALLET = "UPDATE_WALLET";
export const SYNC_WALLET = "SYNC_WALLET";
export const SYNC_WALLETS = "SYNC_WALLETS";

// Settings
// ---
export const SET_BOOLEAN_SETTING = "SET_BOOLEAN_SETTING";

// Websockets
// ---
export const CONNECTION_STATE = "CONNECTION_STATE";