diff --git a/apps/explorer/README.md b/apps/explorer/README.md index 0da36c73bf5..db68127e02e 100644 --- a/apps/explorer/README.md +++ b/apps/explorer/README.md @@ -1,6 +1,6 @@ # IOTA Explorer -[IOTA Explorer](https://explorer.iota.io/) is a network explorer for the IOTA network, similar in functionality to [Etherscan](https://etherscan.io/) or [Solana Explorer](https://explorer.solana.com/). Use IOTA Explorer to see the latest transactions and objects. +[IOTA Explorer](https://explorer.iota.org/) is a network explorer for the IOTA network, similar in functionality to [Etherscan](https://etherscan.io/) or [Solana Explorer](https://explorer.solana.com/). Use IOTA Explorer to see the latest transactions and objects. # Set Up diff --git a/apps/explorer/src/lib/utils/sentry.ts b/apps/explorer/src/lib/utils/sentry.ts index c9456beeb7c..95320908fca 100644 --- a/apps/explorer/src/lib/utils/sentry.ts +++ b/apps/explorer/src/lib/utils/sentry.ts @@ -57,7 +57,7 @@ export function initSentry() { //, ], allowUrls: [ - /.*\.iota\.io/i, + /.*\.iota\.org/i, /.*-iota-foundation\.vercel\.app/i, 'explorer-topaz.vercel.app', ], diff --git a/apps/wallet/src/manifest/manifest.json b/apps/wallet/src/manifest/manifest.json index f43d531e439..8b11d12b5bc 100644 --- a/apps/wallet/src/manifest/manifest.json +++ b/apps/wallet/src/manifest/manifest.json @@ -12,8 +12,8 @@ }, "host_permissions": [ "http://127.0.0.1:5001/", - "https://fullnode.devnet.iota.io/", - "https://fullnode.staging.iota.io/" + "https://fullnode.devnet.iota.org/", + "https://fullnode.staging.iota.org/" ], "icons": { "16": "manifest/icons/iota-icon-16.png", diff --git a/apps/wallet/src/shared/analytics/ampli/index.ts b/apps/wallet/src/shared/analytics/ampli/index.ts index 321c798c4ee..95be5cc179e 100644 --- a/apps/wallet/src/shared/analytics/ampli/index.ts +++ b/apps/wallet/src/shared/analytics/ampli/index.ts @@ -122,7 +122,7 @@ export interface AddedAccountsProperties { numberOfAccounts: number; } -export interface ClickedBullsharkQuestsCtaProperties { +export interface ClickedAppsBannerProperties { /** * The flow the user came from. */ @@ -392,10 +392,10 @@ export class AddedAccounts implements BaseEvent { } } -export class ClickedBullsharkQuestsCta implements BaseEvent { - event_type = 'clicked bullshark quests cta'; +export class ClickedAppsBannerCta implements BaseEvent { + event_type = 'clicked apps banner cta'; - constructor(public event_properties: ClickedBullsharkQuestsCtaProperties) { + constructor(public event_properties: ClickedAppsBannerProperties) { this.event_properties = event_properties; } } @@ -753,20 +753,18 @@ export class Ampli { } /** - * clicked bullshark quests cta - * * [View in Tracking Plan](https://data.amplitude.com/iotaledger/Iota%20Wallet/events/main/latest/clicked%20bullshark%20quests%20cta) * - * When users click the call-to-action for the Bullshark Quests interstitial/banner. + * When users click the call-to-action for banner. * * @param properties The event's properties (e.g. sourceFlow) * @param options Amplitude event options. */ - clickedBullsharkQuestsCta( - properties: ClickedBullsharkQuestsCtaProperties, + clickedAppsBannerCta( + properties: ClickedAppsBannerProperties, options?: EventOptions, ) { - return this.track(new ClickedBullsharkQuestsCta(properties), options); + return this.track(new ClickedAppsBannerCta(properties), options); } /** diff --git a/apps/wallet/src/shared/utils/url.ts b/apps/wallet/src/shared/utils/url.ts index db39b5e1367..716b9c2e768 100644 --- a/apps/wallet/src/shared/utils/url.ts +++ b/apps/wallet/src/shared/utils/url.ts @@ -3,7 +3,7 @@ import { getUrlWithDeviceId } from '../analytics/amplitude'; -const IOTA_DAPPS = ['iotafrens.com']; +const IOTA_DAPPS: string[] = []; export function isValidUrl(url: string | null) { if (!url) { diff --git a/apps/wallet/src/ui/app/components/iota-apps/Banner.tsx b/apps/wallet/src/ui/app/components/iota-apps/Banner.tsx index 0648d56090b..79c3672da01 100644 --- a/apps/wallet/src/ui/app/components/iota-apps/Banner.tsx +++ b/apps/wallet/src/ui/app/components/iota-apps/Banner.tsx @@ -26,9 +26,7 @@ export function AppsPageBanner() { {AppsBannerConfig.value?.bannerUrl && ( - ampli.clickedBullsharkQuestsCta({ sourceFlow: 'Banner - Apps tab' }) - } + onClick={() => ampli.clickedAppsBannerCta({ sourceFlow: 'Banner - Apps tab' })} > { - ampli.clickedBullsharkQuestsCta({ sourceFlow: 'Interstitial' }); + ampli.clickedAppsBannerCta({ sourceFlow: 'Interstitial' }); closeInterstitial(); }} className="h-full w-full" @@ -59,7 +59,6 @@ function Interstitial({ enabled, dismissKey, imageUrl, bannerUrl, onClose }: Int )}