diff --git a/VERSION b/VERSION index 7cca401c7f3..cb1e4b75b1c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.32.0 +2.32.21975 diff --git a/src/status_im/config.cljs b/src/status_im/config.cljs index 6c03dc424e9..533fd1d5504 100644 --- a/src/status_im/config.cljs +++ b/src/status_im/config.cljs @@ -26,8 +26,8 @@ (goog-define ALCHEMY_BASE_MAINNET_TOKEN "") (goog-define ALCHEMY_BASE_SEPOLIA_TOKEN "") (goog-define WALLET_CONNECT_PROJECT_ID "87815d72a81d739d2a7ce15c2cfdefb3") -(goog-define MIXPANEL_APP_ID "3350627") -(goog-define MIXPANEL_TOKEN "5c73bda2d36a9f688a5ee45641fb6775") +(goog-define MIXPANEL_APP_ID "") +(goog-define MIXPANEL_TOKEN "") (def mainnet-rpc-url (str "https://eth-archival.rpc.grove.city/v1/" POKT_TOKEN)) (def sepolia-rpc-url (str "https://sepolia-archival.rpc.grove.city/v1/" POKT_TOKEN)) @@ -48,8 +48,19 @@ (def opensea-link "https://opensea.io") (def opensea-tesnet-link "https://testnets.opensea.io") +;; These MixPanel values should be injected via the CI since they vary depending +;; on the environment, as we want to keep production and test/development +;; metrics separate. +;; +;; We primarily use two MixPanel projects: the production project is named +;; `status-im`, and the test project is `test.status-im`. +;; +;; During development, do not use the production app ID and token. (def mixpanel-app-id MIXPANEL_APP_ID) -(def mixpanel-token MIXPANEL_TOKEN) +(def mixpanel-token + "MixPanel token is not supposed to be secret, but we still want to avoid + committing it to source." + MIXPANEL_TOKEN) (def opensea-api-key OPENSEA_API_KEY) (def status-proxy-enabled? true)