Newer
Older
CrypticOreWallet / src / store / constants.ts
@Drew Lemmy Drew Lemmy on 28 Sep 2020 811 bytes feat: start on wallets in redux
// -----------------------------------------------------------------------------
// Wallet Manager
// -----------------------------------------------------------------------------
export const BROWSE_AS_GUEST = "BROWSE_AS_GUEST";
export const OPEN_LOGIN = "OPEN_LOGIN";
export const LOGIN = "LOGIN";
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 RENAME_WALLET = "RENAME_WALLET";
export const SYNC_WALLET = "SYNC_WALLET";
export const UPDATE_WALLET_BALANCE = "UPDATE_WALLET_BALANCE"