classic-ui/modules/account/injectors/indicatorInjectors.js

11 lines
331 B
JavaScript
Raw Normal View History

import { mapGetters, mapActions } from 'vuex'
export const indicatorMethods = {
...mapActions('encryptedNote', ['highlightNoteAccount', 'redirectToAccount'])
}
export const indicatorComputed = {
...mapGetters('metamask', ['currency']),
...mapGetters('encryptedNote', ['accounts', 'isSetupAccount', 'noteAccountBalance'])
}