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

11 lines
331 B
JavaScript
Raw Normal View History

2022-04-22 06:05:56 +03:00
import { mapGetters, mapActions } from 'vuex'
export const indicatorMethods = {
...mapActions('encryptedNote', ['highlightNoteAccount', 'redirectToAccount'])
}
export const indicatorComputed = {
...mapGetters('metamask', ['currency']),
...mapGetters('encryptedNote', ['accounts', 'isSetupAccount', 'noteAccountBalance'])
}