From 76ef12dd8ef72431adf778150b09cbd8ce03eee1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tokin=20=E2=AC=A2=20Cypher?= Date: Thu, 14 May 2026 12:51:57 -0700 Subject: [PATCH] Added ONE Kin Community token placeholders to wallet.html --- wallet.html | 240 ++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 235 insertions(+), 5 deletions(-) diff --git a/wallet.html b/wallet.html index f58537f..cd59004 100644 --- a/wallet.html +++ b/wallet.html @@ -8,11 +8,18 @@ + + + + + + + @@ -144,6 +177,13 @@ @@ -241,6 +281,187 @@

+ +
+
+ +
+ +
+ 🔗 +
+ +
+ ONE + KIN +

Community Tokens

+

+ + 7 Solana-Powered Tokens +

+ +
+
+ + +
+ ▼ +
+
+ + +
+
+
+ + +
+
+ ONE + ONE KIN • + COMMUNITY +
ONE
+
ONE
+
+
YOUR VALUE
+
$0.42 CAD
+
+ +1.2% 24h
+
+
+
+ + +
+
+ KIN + ONE KIN • + COMMUNITY +
KIN
+
KIN
+
+
YOUR VALUE
+
$0.88 CAD
+
+ +0.9% 24h
+
+
+
+ + +
+
+ DOBBY + ONE KIN • + COMMUNITY +
DOBBY
+
DOBBY
+
+
YOUR VALUE
+
$0.15 CAD
+
+ -0.4% 24h
+
+
+
+ + +
+
+ MYLO + ONE KIN • + COMMUNITY +
MYLO
+
MYLOCAT
+
+
YOUR VALUE
+
$1.65 CAD
+
+ +2.3% 24h
+
+
+
+ + +
+
+ DUNO + ONE KIN • + COMMUNITY +
DUNO
+
DUNO
+
+
YOUR VALUE
+
$0.29 CAD
+
+ +4.1% 24h
+
+
+
+ + +
+
+ CPT + ONE KIN • + COMMUNITY +
CPT
+
CAPTAIN TRENCH
+
+
YOUR VALUE
+
$3.20 CAD
+
+ +0.7% 24h
+
+
+
+ + +
+
+ SINU + ONE KIN • + COMMUNITY +
SINU
+
SOCK INU
+
+
YOUR VALUE
+
$0.11 CAD
+
+ -0.2% 24h
+
+
+
+ +
+
+
+
+ +
Giddy's Shop @@ -335,6 +556,20 @@

} localStorage.setItem('claimBubbleDismissed', 'true'); } + + /* === Toggle for ONE KIN Community Tokens expandable rectangle === */ + function toggleCommunityTokens() { + const content = document.getElementById('community-content'); + const icon = document.getElementById('expand-icon'); + + if (content.style.maxHeight && content.style.maxHeight !== '0px') { + content.style.maxHeight = '0px'; + icon.style.transform = 'rotate(0deg)'; + } else { + content.style.maxHeight = content.scrollHeight + 'px'; + icon.style.transform = 'rotate(180deg)'; + } + } @@ -351,7 +586,6 @@

const bubble = document.getElementById('mobileClaimBubble'); const targetCard = document.getElementById('walletTotalCard'); - // Set default mobile layout visibility state safely on page ready execution if (bubble) { if (window.innerWidth < 768 && localStorage.getItem('claimBubbleDismissed') !== 'true') { bubble.setAttribute('data-visible', 'true'); @@ -360,17 +594,14 @@

} } - // Framework-safe Intersection tracking directly on the buy/sell module if (targetCard && bubble) { const bndObserver = new IntersectionObserver((entries) => { entries.forEach(entry => { if (localStorage.getItem('claimBubbleDismissed') === 'true') return; if (entry.isIntersecting) { - // Total card is showing inside the main screen space -> fade it out bubble.setAttribute('data-visible', 'false'); } else { - // Card is scrolled away -> pull the bubble back up if (entry.boundingClientRect.top > 0) { bubble.setAttribute('data-visible', 'true'); } @@ -385,7 +616,6 @@

bndObserver.observe(targetCard); } - // Normal scroll reveal loop const fallbackObserver = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) entry.target.classList.add('visible');