classic-ui/modules/account/injectors/indicatorInjectors.js
Danil Kovtonyuk 44f31f8b9f
init
2022-04-22 13:14:19 +10:00

11 lines
331 B
JavaScript

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