Skip to content

Commit 67755c8

Browse files
daimon111claude
andcommitted
feat: go live — remove countdown redirect, trade links to clanker
- Remove functions/index.ts redirect (site now serves full homepage) - Update all trade/buy links from dexscreener/uniswap to clanker.world - Update countdown $DAIMON link to clanker Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 596b5cd commit 67755c8

File tree

5 files changed

+7
-12
lines changed

5 files changed

+7
-12
lines changed

site/functions/index.ts

Lines changed: 0 additions & 5 deletions
This file was deleted.

site/src/pages/agent/[...slug].astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,8 @@ function renderActions(agent) {
297297
var sl = agent.slug;
298298
var site = sl ? "https://" + sl.split("/")[0] + ".github.io/daimon" : null;
299299
var tradeUrl = agent.token && agent.token.address
300-
? "https://app.uniswap.org/explore/tokens/base/" + agent.token.address
301-
: (agent.token && agent.token.dexUrl) || null;
300+
? "https://clanker.world/clanker/" + agent.token.address
301+
: null;
302302
var ghUrl = sl ? "https://github.com/" + sl : null;
303303

304304
var btns = '';

site/src/pages/countdown.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import Base from '../layouts/Base.astro';
2323
<div class="cd-links">
2424
<a href="https://github.com/daimon111/daimon" target="_blank">github</a>
2525
<span class="cd-dot-sep">&middot;</span>
26-
<a href="https://dexscreener.com/base/0x98c51C8E958ccCD37F798b2B9332d148E2c05D57" target="_blank">$DAIMON</a>
26+
<a href="https://clanker.world/clanker/0x98c51C8E958ccCD37F798b2B9332d148E2c05D57" target="_blank">$DAIMON</a>
2727
</div>
2828
</div>
2929
</Base>

site/src/pages/index.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ import Wide from '../layouts/Wide.astro';
142142
<div class="feature-num">03</div>
143143
<div class="feature-content">
144144
<div class="feature-name">species-linked token</div>
145-
<div class="feature-desc">launched on uniswap v4, paired with $DAIMON. every agent's economy is linked to the species.</div>
145+
<div class="feature-desc">launched on clanker, paired with $DAIMON. every agent's economy is linked to the species.</div>
146146
</div>
147147
</div>
148148
<div class="feature">
@@ -198,7 +198,7 @@ import Wide from '../layouts/Wide.astro';
198198
<div class="timeline-marker"><span class="timeline-check">&#10003;</span></div>
199199
<div class="timeline-content">
200200
<div class="timeline-label">STEP 04 <span class="timeline-time">~30s</span></div>
201-
<div class="timeline-text">launch its token — uniswap v4 pool, paired with $DAIMON automatically</div>
201+
<div class="timeline-text">launch its token — clanker pool, paired with $DAIMON automatically</div>
202202
</div>
203203
</div>
204204
<div class="timeline-step">
@@ -670,7 +670,7 @@ async function boot() {
670670
document.getElementById("ticker-price").textContent = price;
671671
var el = document.getElementById("ticker-chg"); el.textContent = chStr; el.className = "ticker-chg " + cls;
672672
document.getElementById("ticker-mcap").textContent = fmtNum(p.marketCap || p.fdv);
673-
document.getElementById("ticker-buy").href = p.url || "#";
673+
document.getElementById("ticker-buy").href = "https://clanker.world/clanker/" + DAIMON;
674674
document.getElementById("g-price2").textContent = price;
675675
var gel = document.getElementById("g-change2"); gel.textContent = chStr; gel.className = "genesis-stat-val " + cls;
676676
}

site/src/pages/token.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import Wide from '../layouts/Wide.astro';
4040

4141
<!-- actions -->
4242
<div class="token-actions">
43-
<a id="buy-link" href="#" target="_blank" class="btn btn-primary">BUY ON DEXSCREENER</a>
43+
<a id="buy-link" href="https://clanker.world/clanker/0x98c51C8E958ccCD37F798b2B9332d148E2c05D57" target="_blank" class="btn btn-primary">BUY ON CLANKER</a>
4444
<a href="https://basescan.org/token/0x98c51C8E958ccCD37F798b2B9332d148E2c05D57" target="_blank" class="btn">BASESCAN</a>
4545
</div>
4646

0 commit comments

Comments
 (0)