+
{title}
{description}
@@ -96,3 +173,5 @@ const SocialItem: FC
= ({ title, IconComp, followUrl }) => (
);
+
+const TG_USERNAME_REGEX = /^@[a-zA-Z0-9](?:[a-zA-Z0-9_]{3,}[a-zA-Z0-9])$/;
diff --git a/src/lib/apis/temple-tap.ts b/src/lib/apis/temple-tap.ts
new file mode 100644
index 000000000..f84a641a6
--- /dev/null
+++ b/src/lib/apis/temple-tap.ts
@@ -0,0 +1,8 @@
+import { templeWalletApi } from './temple/endpoints/templewallet.api';
+
+export function sendTempleTapAirdropUsernameConfirmation(accountPkh: string, username: string) {
+ return templeWalletApi.post('/temple-tap/confirm-airdrop-username', {
+ accountPkh,
+ username
+ });
+}