diff --git a/app/layout.tsx b/app/layout.tsx
index b52760ca..5dd42129 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -3,12 +3,14 @@ import React from 'react';
import { getPageMap } from 'nextra/page-map';
import { Toaster } from 'sonner';
import { Metadata } from 'next';
+import { GoogleAnalytics } from '@next/third-parties/google';
import DocsProviders from '../src/providers/DocsProviders';
import '@radix-ui/themes/styles.css';
import 'nextra-theme-docs/style.css';
import './globals.css';
+import Script from 'next/script';
export const metadata: Metadata = {
title: {
@@ -69,14 +71,14 @@ export default async function RootLayout({ children }) {
return (
-
{children}
-
+
+
);
}
diff --git a/package.json b/package.json
index 9ffb5c07..c4938899 100644
--- a/package.json
+++ b/package.json
@@ -20,6 +20,7 @@
"@dynamic-labs/sdk-react-core": "^4.9.11",
"@dynamic-labs/wagmi-connector": "^4.9.11",
"@hcaptcha/react-hcaptcha": "^1.10.1",
+ "@next/third-parties": "^15.2.4",
"@radix-ui/themes": "^3.2.0",
"@sei-js/cosmjs": "^1.0.7",
"@sei-js/evm": "^2.0.0",
diff --git a/src/components/FaucetRequest/index.tsx b/src/components/FaucetRequest/index.tsx
index 10f65f91..d1e990d2 100644
--- a/src/components/FaucetRequest/index.tsx
+++ b/src/components/FaucetRequest/index.tsx
@@ -7,6 +7,7 @@ import { IconDroplet, IconShieldCheck, IconHourglass, IconCheck, IconLoader2, Ic
import { isAddress } from 'viem';
import { isValidSeiCosmosAddress } from '@sei-js/cosmjs';
import HCaptcha from '@hcaptcha/react-hcaptcha';
+import { sendGAEvent } from '@next/third-parties/google';
const VITE_FAUCET_API_URL = 'https://staging-faucet-v3.seinetwork.io';
@@ -78,6 +79,7 @@ const RequestFaucetCard = () => {
console.log('response', responseJson);
toast.success('Tokens requested successfully!');
await fetchTransactionHash(messageId);
+ sendGAEvent('event', 'faucetUsed', { address: destAddress });
} else if (responseJson.data?.nextAllowedUseDate) {
setNextUseTime(responseJson.data.nextAllowedUseDate);
toast.error(`Rate limited. Try again after ${responseJson.data.nextAllowedUseDate}`);
diff --git a/yarn.lock b/yarn.lock
index 3fc54c67..45b24a81 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3135,6 +3135,13 @@
resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.2.3.tgz#727b90c7dcc2279344115a94b99d93d452956f02"
integrity sha512-gHYS9tc+G2W0ZC8rBL+H6RdtXIyk40uLiaos0yj5US85FNhbFEndMA2nW3z47nzOWiSvXTZ5kBClc3rD0zJg0w==
+"@next/third-parties@^15.2.4":
+ version "15.2.4"
+ resolved "https://registry.yarnpkg.com/@next/third-parties/-/third-parties-15.2.4.tgz#654f09a8ffb6bb3f7aac82067d57cd3eb901ae06"
+ integrity sha512-a8GlPnMmPymxyLOiSnh5InUsG/hw7wjU3munGoHNB+oLCPruAeoplBa9Uf/xE83WMyutyK4cbi5Ixu4uyh96Mw==
+ dependencies:
+ third-party-capital "1.0.20"
+
"@noble/ciphers@0.5.3":
version "0.5.3"
resolved "https://registry.yarnpkg.com/@noble/ciphers/-/ciphers-0.5.3.tgz#48b536311587125e0d0c1535f73ec8375cd76b23"
@@ -14251,6 +14258,11 @@ thenify-all@^1.0.0:
dependencies:
any-promise "^1.0.0"
+third-party-capital@1.0.20:
+ version "1.0.20"
+ resolved "https://registry.yarnpkg.com/third-party-capital/-/third-party-capital-1.0.20.tgz#e218a929a35bf4d2245da9addb8ab978d2f41685"
+ integrity sha512-oB7yIimd8SuGptespDAZnNkzIz+NWaJCu2RMsbs4Wmp9zSDUM8Nhi3s2OOcqYuv3mN4hitXc8DVx+LyUmbUDiA==
+
thread-stream@^0.15.1:
version "0.15.2"
resolved "https://registry.yarnpkg.com/thread-stream/-/thread-stream-0.15.2.tgz#fb95ad87d2f1e28f07116eb23d85aba3bc0425f4"