1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

[Hotfix] track anonymous events appropriately (#13237)

This commit is contained in:
Brad Decker 2022-01-06 21:29:06 -06:00 committed by GitHub
parent af971cd5b6
commit e333eb4628
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -110,9 +110,9 @@
* the page view * the page view
*/ */
// An empty string is a, currently undocumented, way of telling mixpanel // Mixpanel converts the zero address value to a truly anonymous event, which
// that these events are meant to be anonymous and not identified to any user // speeds up reporting
export const METAMETRICS_ANONYMOUS_ID = ''; export const METAMETRICS_ANONYMOUS_ID = '0x0000000000000000';
/** /**
* This object is used to identify events that are triggered by the background * This object is used to identify events that are triggered by the background