@@ -22,6 +22,7 @@ import {
22
22
LinkButton ,
23
23
MenuItem ,
24
24
Text ,
25
+ TrackedLink ,
25
26
} from "tw-components" ;
26
27
import React , { useEffect , useMemo , useState } from "react" ;
27
28
import {
@@ -49,6 +50,7 @@ import { useAddress } from "@thirdweb-dev/react";
49
50
import { CustomConnectWallet } from "@3rdweb-sdk/react/components/connect-wallet" ;
50
51
51
52
const RADIAN = Math . PI / 180 ;
53
+ const TRACKING_CATEGORY = "wallet-analytics" ;
52
54
53
55
const DashboardWalletsAnalytics : ThirdwebNextPage = ( ) => {
54
56
const { colorMode } = useColorMode ( ) ;
@@ -299,13 +301,25 @@ const DashboardWalletsAnalytics: ThirdwebNextPage = () => {
299
301
< Flex flexDir = "column" gap = { 8 } >
300
302
{ statsQuery . data && statsQuery . data . timeSeries . length > 0 ? (
301
303
< >
304
+ < Text size = "body.md" >
305
+ Showing data for the < b > last 7 days</ b > . Need more insights?{ " " }
306
+ < TrackedLink
307
+ href = "https://thirdweb.com/contact-us"
308
+ category = { TRACKING_CATEGORY }
309
+ label = "contact-us"
310
+ color = "blue.500"
311
+ isExternal
312
+ >
313
+ Contact us.
314
+ </ TrackedLink >
315
+ </ Text >
302
316
< Flex gap = { 4 } >
303
317
< WalletStatCard
304
318
label = "Connections"
305
319
value = { totalStasData . totalWallets }
306
320
/>
307
321
< WalletStatCard
308
- label = "Unique Users "
322
+ label = "Unique Wallets "
309
323
value = { totalStasData . uniqueWallets }
310
324
/>
311
325
</ Flex >
@@ -317,11 +331,11 @@ const DashboardWalletsAnalytics: ThirdwebNextPage = () => {
317
331
>
318
332
< Stack spacing = { 0 } padding = { { base : 2 , md : 6 } } >
319
333
< Heading as = "h3" size = "subtitle.sm" >
320
- Users Connected
334
+ Daily Connections
321
335
</ Heading >
322
336
< Text >
323
337
Total and unique wallets addresses that connected to your
324
- app.
338
+ app each day .
325
339
</ Text >
326
340
</ Stack >
327
341
< ChartContainer w = "full" ratio = { 21 / 9 } >
@@ -346,8 +360,8 @@ const DashboardWalletsAnalytics: ThirdwebNextPage = () => {
346
360
Wallet Connectors
347
361
</ Heading >
348
362
< Text >
349
- The different types of wallets used to connect to your
350
- app .
363
+ The different types of wallets used to connect to your app
364
+ each day .
351
365
</ Text >
352
366
</ Stack >
353
367
< ChartContainer w = "full" ratio = { 21 / 9 } >
0 commit comments