You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
515 B
14 lines
515 B
import { getBackgroundMetaMetricState } from '../../../ui/app/selectors'
|
|
import { sendMetaMetricsEvent } from '../../../ui/app/helpers/utils/metametrics.util'
|
|
|
|
export default function backgroundMetaMetricsEvent (metaMaskState, version, eventData) {
|
|
const stateEventData = getBackgroundMetaMetricState({ metamask: metaMaskState })
|
|
if (stateEventData.participateInMetaMetrics) {
|
|
sendMetaMetricsEvent({
|
|
...stateEventData,
|
|
...eventData,
|
|
version,
|
|
currentPath: '/background',
|
|
})
|
|
}
|
|
}
|
|
|