2020-12-02 22:41:30 +01:00
|
|
|
// Type Imports
|
|
|
|
/**
|
2021-01-20 17:13:14 +01:00
|
|
|
* @typedef {import('../../shared/constants/app').EnvironmentType} EnvironmentType
|
2020-12-02 22:41:30 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
// Type Declarations
|
|
|
|
/**
|
|
|
|
* Used to attach context of where the user was at in the application when the
|
|
|
|
* event was triggered. Also included as full details of the current page in
|
|
|
|
* page events.
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2020-12-02 22:41:30 +01:00
|
|
|
* @typedef {Object} MetaMetricsPageObject
|
|
|
|
* @property {string} [path] - the path of the current page (e.g /home)
|
|
|
|
* @property {string} [title] - the title of the current page (e.g 'home')
|
|
|
|
* @property {string} [url] - the fully qualified url of the current page
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* For metamask, this is the dapp that triggered an interaction
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2020-12-02 22:41:30 +01:00
|
|
|
* @typedef {Object} MetaMetricsReferrerObject
|
|
|
|
* @property {string} [url] - the origin of the dapp issuing the
|
|
|
|
* notification
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We attach context to every meta metrics event that help to qualify our
|
|
|
|
* analytics. This type has all optional values because it represents a
|
|
|
|
* returned object from a method call. Ideally app and userAgent are
|
|
|
|
* defined on every event. This is confirmed in the getTrackMetaMetricsEvent
|
|
|
|
* function, but still provides the consumer a way to override these values if
|
|
|
|
* necessary.
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2020-12-02 22:41:30 +01:00
|
|
|
* @typedef {Object} MetaMetricsContext
|
2022-01-07 16:57:33 +01:00
|
|
|
* @property {Object} app - Application metadata.
|
2020-12-02 22:41:30 +01:00
|
|
|
* @property {string} app.name - the name of the application tracking the event
|
|
|
|
* @property {string} app.version - the version of the application
|
|
|
|
* @property {string} userAgent - the useragent string of the user
|
|
|
|
* @property {MetaMetricsPageObject} [page] - an object representing details of
|
|
|
|
* the current page
|
|
|
|
* @property {MetaMetricsReferrerObject} [referrer] - for metamask, this is the
|
|
|
|
* dapp that triggered an interaction
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef {Object} MetaMetricsEventPayload
|
2022-01-07 16:57:33 +01:00
|
|
|
* @property {string} event - event name to track
|
|
|
|
* @property {string} category - category to associate event to
|
2020-12-02 22:41:30 +01:00
|
|
|
* @property {string} [environmentType] - The type of environment this event
|
|
|
|
* occurred in. Defaults to the background process type
|
2022-01-07 16:57:33 +01:00
|
|
|
* @property {object} [properties] - object of custom values to track, keys
|
2020-12-02 22:41:30 +01:00
|
|
|
* in this object must be in snake_case
|
2022-01-07 16:57:33 +01:00
|
|
|
* @property {object} [sensitiveProperties] - Object of sensitive values to
|
2020-12-02 22:41:30 +01:00
|
|
|
* track. Keys in this object must be in snake_case. These properties will be
|
|
|
|
* sent in an additional event that excludes the user's metaMetricsId
|
2022-01-07 16:57:33 +01:00
|
|
|
* @property {number} [revenue] - amount of currency that event creates in
|
2020-12-02 22:41:30 +01:00
|
|
|
* revenue for MetaMask
|
2022-01-07 16:57:33 +01:00
|
|
|
* @property {string} [currency] - ISO 4127 format currency for events with
|
2020-12-02 22:41:30 +01:00
|
|
|
* revenue, defaults to US dollars
|
2022-01-07 16:57:33 +01:00
|
|
|
* @property {number} [value] - Abstract business "value" attributable to
|
2020-12-02 22:41:30 +01:00
|
|
|
* customers who trigger this event
|
|
|
|
* @property {MetaMetricsPageObject} [page] - the page/route that the event
|
|
|
|
* occurred on
|
|
|
|
* @property {MetaMetricsReferrerObject} [referrer] - the origin of the dapp
|
|
|
|
* that triggered the event
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef {Object} MetaMetricsEventOptions
|
|
|
|
* @property {boolean} [isOptIn] - happened during opt in/out workflow
|
|
|
|
* @property {boolean} [flushImmediately] - When true will automatically flush
|
|
|
|
* the segment queue after tracking the event. Recommended if the result of
|
|
|
|
* tracking the event must be known before UI transition or update
|
|
|
|
* @property {boolean} [excludeMetaMetricsId] - whether to exclude the user's
|
|
|
|
* metametrics id for anonymity
|
2022-01-07 16:57:33 +01:00
|
|
|
* @property {string} [metaMetricsId] - an override for the metaMetricsId in
|
2020-12-02 22:41:30 +01:00
|
|
|
* the event one is created as part of an asynchronous workflow, such as
|
|
|
|
* awaiting the result of the metametrics opt-in function that generates the
|
|
|
|
* user's metametrics id
|
|
|
|
* @property {boolean} [matomoEvent] - is this event a holdover from matomo
|
|
|
|
* that needs further migration? when true, sends the data to a special
|
|
|
|
* segment source that marks the event data as not conforming to our schema
|
|
|
|
*/
|
|
|
|
|
2022-01-12 20:31:54 +01:00
|
|
|
/**
|
|
|
|
* @typedef {Object} MetaMetricsEventFragment
|
|
|
|
* @property {string} successEvent - The event name to fire when the fragment
|
|
|
|
* is closed in an affirmative action.
|
|
|
|
* @property {string} [failureEvent] - The event name to fire when the fragment
|
|
|
|
* is closed with a rejection.
|
2022-01-20 17:26:39 +01:00
|
|
|
* @property {string} [initialEvent] - An event name to fire immediately upon
|
|
|
|
* fragment creation. This is useful for building funnels in mixpanel and for
|
|
|
|
* reduction of code duplication.
|
2022-01-12 20:31:54 +01:00
|
|
|
* @property {string} category - the event category to use for both the success
|
|
|
|
* and failure events
|
|
|
|
* @property {boolean} [persist] - Should this fragment be persisted in
|
|
|
|
* state and progressed after the extension is locked and unlocked.
|
|
|
|
* @property {number} [timeout] - Time in seconds the event should be persisted
|
|
|
|
* for. After the timeout the fragment will be closed as abandoned. if not
|
|
|
|
* supplied the fragment is stored indefinitely.
|
|
|
|
* @property {number} [lastUpdated] - Date.now() when the fragment was last
|
|
|
|
* updated. Used to determine if the timeout has expired and the fragment
|
|
|
|
* should be closed.
|
|
|
|
* @property {object} [properties] - Object of custom values to track, keys in
|
|
|
|
* this object must be in snake_case.
|
|
|
|
* @property {object} [sensitiveProperties] - Object of sensitive values to
|
|
|
|
* track. Keys in this object must be in snake_case. These properties will be
|
|
|
|
* sent in an additional event that excludes the user's metaMetricsId
|
|
|
|
* @property {number} [revenue] - amount of currency that event creates in
|
|
|
|
* revenue for MetaMask if fragment is successful.
|
|
|
|
* @property {string} [currency] - ISO 4127 format currency for events with
|
|
|
|
* revenue, defaults to US dollars
|
|
|
|
* @property {number} [value] - Abstract business "value" attributable to
|
|
|
|
* customers who successfully complete this fragment
|
|
|
|
* @property {MetaMetricsPageObject} [page] - the page/route that the event
|
|
|
|
* occurred on
|
|
|
|
* @property {MetaMetricsReferrerObject} [referrer] - the origin of the dapp
|
|
|
|
* that initiated the event fragment.
|
2022-01-20 17:26:39 +01:00
|
|
|
* @property {string} [uniqueIdentifier] - optional argument to override the
|
|
|
|
* automatic generation of UUID for the event fragment. This is useful when
|
|
|
|
* tracking events for subsystems that already generate UUIDs so to avoid
|
|
|
|
* unnecessary lookups and reduce accidental duplication.
|
2022-01-12 20:31:54 +01:00
|
|
|
*/
|
|
|
|
|
2020-12-02 22:41:30 +01:00
|
|
|
/**
|
|
|
|
* Represents the shape of data sent to the segment.track method.
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2020-12-02 22:41:30 +01:00
|
|
|
* @typedef {Object} SegmentEventPayload
|
|
|
|
* @property {string} [userId] - The metametrics id for the user
|
|
|
|
* @property {string} [anonymousId] - An anonymousId that is used to track
|
|
|
|
* sensitive data while preserving anonymity.
|
|
|
|
* @property {string} event - name of the event to track
|
|
|
|
* @property {Object} properties - properties to attach to the event
|
|
|
|
* @property {MetaMetricsContext} context - the context the event occurred in
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef {Object} MetaMetricsPagePayload
|
|
|
|
* @property {string} name - The name of the page that was viewed
|
|
|
|
* @property {Object} [params] - The variadic parts of the page url
|
|
|
|
* example (route: `/asset/:asset`, path: `/asset/ETH`)
|
|
|
|
* params: { asset: 'ETH' }
|
|
|
|
* @property {EnvironmentType} environmentType - the environment type that the
|
|
|
|
* page was viewed in
|
|
|
|
* @property {MetaMetricsPageObject} [page] - the details of the page
|
|
|
|
* @property {MetaMetricsReferrerObject} [referrer] - dapp that triggered the page
|
|
|
|
* view
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef {Object} MetaMetricsPageOptions
|
|
|
|
* @property {boolean} [isOptInPath] - is the current path one of the pages in
|
|
|
|
* the onboarding workflow? If true and participateInMetaMetrics is null track
|
|
|
|
* the page view
|
|
|
|
*/
|
|
|
|
|
2022-03-24 21:23:21 +01:00
|
|
|
/**
|
|
|
|
* @typedef {Object} Traits
|
2022-04-13 18:46:49 +02:00
|
|
|
* @property {'address_book_entries'} ADDRESS_BOOK_ENTRIES - When the user
|
|
|
|
* adds or modifies addresses in address book the address_book_entries trait
|
|
|
|
* is identified.
|
|
|
|
* @property {'ledger_connection_type'} LEDGER_CONNECTION_TYPE - when ledger
|
|
|
|
* live connnection type is changed we identify the ledger_connection_type
|
|
|
|
* trait
|
|
|
|
* @property {'networks_added'} NETWORKS_ADDED - when user modifies networks
|
|
|
|
* we identify the networks_added trait
|
2022-05-13 19:01:29 +02:00
|
|
|
* @property {'networks_without_ticker'} NETWORKS_WITHOUT_TICKER - when user
|
|
|
|
* modifies networks we identify the networks_without_ticker trait for
|
|
|
|
* networks without a ticker.
|
2022-04-15 15:39:55 +02:00
|
|
|
* @property {'nft_autodetection_enabled'} NFT_AUTODETECTION_ENABLED - when Autodetect NFTs
|
|
|
|
* feature is toggled we identify the nft_autodetection_enabled trait
|
2022-04-13 18:46:49 +02:00
|
|
|
* @property {'number_of_accounts'} NUMBER_OF_ACCOUNTS - when identities
|
|
|
|
* change, we identify the new number_of_accounts trait
|
|
|
|
* @property {'number_of_nft_collections'} NUMBER_OF_NFT_COLLECTIONS - user
|
|
|
|
* trait for number of unique NFT addresses
|
2022-04-21 23:46:12 +02:00
|
|
|
* @property {'number_of_nfts'} NUMBER_OF_NFTS - user trait for number of all NFT addresses
|
2022-04-15 18:35:07 +02:00
|
|
|
* @property {'number_of_tokens'} NUMBER_OF_TOKENS - when the number of tokens change, we
|
|
|
|
* identify the new number_of_tokens trait
|
2022-04-15 15:39:55 +02:00
|
|
|
* @property {'opensea_api_enabled'} OPENSEA_API_ENABLED - when the OpenSea API is enabled
|
|
|
|
* we identify the opensea_api_enabled trait
|
2022-04-13 18:46:49 +02:00
|
|
|
* @property {'three_box_enabled'} THREE_BOX_ENABLED - when 3box feature is
|
|
|
|
* toggled we identify the 3box_enabled trait
|
2022-04-18 18:31:44 +02:00
|
|
|
* @property {'theme'} THEME - when the user's theme changes we identify the theme trait
|
2022-05-11 22:27:58 +02:00
|
|
|
* @property {'token_detection_enabled'} TOKEN_DETECTION_ENABLED - when token detection feature is toggled we
|
|
|
|
* identify the token_detection_enabled trait
|
2022-03-24 21:23:21 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {Traits}
|
|
|
|
*/
|
|
|
|
|
|
|
|
export const TRAITS = {
|
2022-04-13 18:46:49 +02:00
|
|
|
ADDRESS_BOOK_ENTRIES: 'address_book_entries',
|
2022-03-24 21:23:21 +01:00
|
|
|
LEDGER_CONNECTION_TYPE: 'ledger_connection_type',
|
|
|
|
NETWORKS_ADDED: 'networks_added',
|
2022-05-13 19:01:29 +02:00
|
|
|
NETWORKS_WITHOUT_TICKER: 'networks_without_ticker',
|
2022-04-15 15:39:55 +02:00
|
|
|
NFT_AUTODETECTION_ENABLED: 'nft_autodetection_enabled',
|
2022-04-10 09:42:00 +02:00
|
|
|
NUMBER_OF_ACCOUNTS: 'number_of_accounts',
|
|
|
|
NUMBER_OF_NFT_COLLECTIONS: 'number_of_nft_collections',
|
2022-04-21 23:46:12 +02:00
|
|
|
NUMBER_OF_NFTS: 'number_of_nfts',
|
2022-04-15 18:35:07 +02:00
|
|
|
NUMBER_OF_TOKENS: 'number_of_tokens',
|
2022-04-15 15:39:55 +02:00
|
|
|
OPENSEA_API_ENABLED: 'opensea_api_enabled',
|
2022-04-10 09:42:00 +02:00
|
|
|
THREE_BOX_ENABLED: 'three_box_enabled',
|
2022-04-18 18:31:44 +02:00
|
|
|
THEME: 'theme',
|
2022-05-11 22:27:58 +02:00
|
|
|
TOKEN_DETECTION_ENABLED: 'token_detection_enabled',
|
2022-03-24 21:23:21 +01:00
|
|
|
};
|
|
|
|
|
2022-04-13 18:46:49 +02:00
|
|
|
/**
|
|
|
|
* @typedef {Object} MetaMetricsTraits
|
|
|
|
* @property {number} [address_book_entries] - The number of entries in the
|
|
|
|
* user's address book.
|
|
|
|
* @property {'ledgerLive' | 'webhid' | 'u2f'} [ledger_connection_type] - the
|
|
|
|
* type of ledger connection set by user preference.
|
|
|
|
* @property {Array<string>} [networks_added] - An array consisting of chainIds
|
|
|
|
* that indicate the networks a user has added to their MetaMask.
|
2022-05-13 19:01:29 +02:00
|
|
|
* @property {Array<string>} [networks_without_ticker] - An array consisting of
|
|
|
|
* chainIds that indicate the networks added by the user that do not have a
|
|
|
|
* ticker.
|
2022-04-15 15:39:55 +02:00
|
|
|
* @property {number} [nft_autodetection_enabled] - does the user have the
|
|
|
|
* use collection/nft detection enabled?
|
2022-04-13 18:46:49 +02:00
|
|
|
* @property {number} [number_of_accounts] - A number representing the number
|
|
|
|
* of identities(accounts) added to the user's MetaMask.
|
|
|
|
* @property {number} [number_of_nft_collections] - A number representing the
|
|
|
|
* amount of different NFT collections the user possesses an NFT from.
|
2022-04-21 23:46:12 +02:00
|
|
|
* @property {number} [number_of_nfts] - A number representing the
|
|
|
|
* amount of all NFTs the user possesses across all networks and accounts.
|
2022-04-15 18:35:07 +02:00
|
|
|
* @property {number} [number_of_tokens] - The total number of token contracts
|
|
|
|
* the user has across all networks and accounts.
|
2022-04-15 15:39:55 +02:00
|
|
|
* @property {boolean} [opensea_api_enabled] - does the user have the OpenSea
|
|
|
|
* API enabled?
|
2022-04-13 18:46:49 +02:00
|
|
|
* @property {boolean} [three_box_enabled] - does the user have 3box sync
|
|
|
|
* enabled?
|
2022-04-18 18:31:44 +02:00
|
|
|
* @property {string} [theme] - which theme the user has selected
|
2022-05-11 22:27:58 +02:00
|
|
|
* @property {boolean} [token_detection_enabled] - does the user have token detection is enabled?
|
2022-04-13 18:46:49 +02:00
|
|
|
*/
|
|
|
|
|
2022-01-07 04:29:06 +01:00
|
|
|
// Mixpanel converts the zero address value to a truly anonymous event, which
|
|
|
|
// speeds up reporting
|
|
|
|
export const METAMETRICS_ANONYMOUS_ID = '0x0000000000000000';
|
2020-12-02 22:41:30 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This object is used to identify events that are triggered by the background
|
|
|
|
* process.
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2020-12-02 22:41:30 +01:00
|
|
|
* @type {MetaMetricsPageObject}
|
|
|
|
*/
|
|
|
|
export const METAMETRICS_BACKGROUND_PAGE_OBJECT = {
|
|
|
|
path: '/background-process',
|
|
|
|
title: 'Background Process',
|
|
|
|
url: '/background-process',
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-12-02 22:41:30 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef {Object} SegmentInterface
|
|
|
|
* @property {SegmentEventPayload[]} queue - A queue of events to be sent when
|
|
|
|
* the flushAt limit has been reached, or flushInterval occurs
|
|
|
|
* @property {() => void} flush - Immediately flush the queue, resetting it to
|
|
|
|
* an empty array and sending the pending events to Segment
|
|
|
|
* @property {(
|
|
|
|
* payload: SegmentEventPayload,
|
|
|
|
* callback: (err?: Error) => void
|
|
|
|
* ) => void} track - Track an event with Segment, using the internal batching
|
|
|
|
* mechanism to optimize network requests
|
|
|
|
* @property {(payload: Object) => void} page - Track a page view with Segment
|
|
|
|
* @property {() => void} identify - Identify an anonymous user. We do not
|
|
|
|
* currently use this method.
|
|
|
|
*/
|
2021-11-15 17:13:51 +01:00
|
|
|
|
|
|
|
export const REJECT_NOTFICIATION_CLOSE = 'Cancel Via Notification Close';
|
|
|
|
export const REJECT_NOTFICIATION_CLOSE_SIG =
|
|
|
|
'Cancel Sig Request Via Notification Close';
|
2022-04-04 21:26:13 +02:00
|
|
|
|
2022-04-22 18:09:10 +02:00
|
|
|
/**
|
|
|
|
* EVENTS
|
|
|
|
*/
|
|
|
|
|
2022-04-04 21:26:13 +02:00
|
|
|
export const EVENT_NAMES = {
|
|
|
|
ENCRYPTION_PUBLIC_KEY_REQUESTED: 'Encryption Public Key Requested',
|
|
|
|
DECRYPTION_REQUESTED: 'Decryption Requested',
|
|
|
|
PERMISSIONS_REQUESTED: 'Permissions Requested',
|
2022-05-11 22:27:58 +02:00
|
|
|
SIGNATURE_REQUESTED: 'Signature Requested',
|
|
|
|
TOKEN_ADDED: 'Token Added',
|
|
|
|
TOKEN_DETECTED: 'Token Detected',
|
|
|
|
TOKEN_HIDDEN: 'Token Hidden',
|
|
|
|
TOKEN_IMPORT_CANCELED: 'Token Import Canceled',
|
|
|
|
TOKEN_IMPORT_CLICKED: 'Token Import Clicked',
|
2022-04-04 21:26:13 +02:00
|
|
|
};
|
2022-04-22 18:09:10 +02:00
|
|
|
|
|
|
|
export const EVENT = {
|
|
|
|
CATEGORIES: {
|
|
|
|
ACCOUNTS: 'Accounts',
|
|
|
|
AUTH: 'Auth',
|
|
|
|
BACKGROUND: 'Background',
|
|
|
|
INPAGE_PROVIDER: 'inpage_provider',
|
|
|
|
MESSAGES: 'Messages',
|
|
|
|
NAVIGATION: 'Navigation',
|
|
|
|
NETWORK: 'Network',
|
|
|
|
ONBOARDING: 'Onboarding',
|
|
|
|
RETENTION: 'Retention',
|
|
|
|
SETTINGS: 'Settings',
|
|
|
|
SNAPS: 'Snaps',
|
2022-04-28 00:43:49 +02:00
|
|
|
SWAPS: 'Swaps',
|
2022-04-22 18:09:10 +02:00
|
|
|
TRANSACTIONS: 'Transactions',
|
|
|
|
WALLET: 'Wallet',
|
|
|
|
},
|
2022-05-11 22:27:58 +02:00
|
|
|
SOURCE: {
|
|
|
|
SWAPS: {
|
|
|
|
MAIN_VIEW: 'Main View',
|
|
|
|
TOKEN_VIEW: 'Token View',
|
|
|
|
},
|
|
|
|
TRANSACTION: {
|
|
|
|
USER: 'user',
|
|
|
|
DAPP: 'dapp',
|
|
|
|
},
|
|
|
|
TOKEN: {
|
|
|
|
CUSTOM: 'custom',
|
|
|
|
DETECTED: 'detected',
|
|
|
|
DAPP: 'dapp',
|
|
|
|
LIST: 'list',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
LOCATION: {
|
|
|
|
TOKEN_DETECTION: 'token_detection',
|
|
|
|
TOKEN_MENU: 'token_menu',
|
|
|
|
TOKEN_DETAILS: 'token_details',
|
|
|
|
},
|
2022-04-22 18:09:10 +02:00
|
|
|
};
|