Skip to content

Conversation

@5p0rt5BEArD
Copy link
Contributor

New base url for all whitelist minters (dungeons and competition)
Dungeon 2 fees are now 0

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR updates the base URL for relic images and removes the raiding fee for Dungeon 2. The changes migrate from the previous domain to a DuckDNS-hosted URL and make raiding free for players.

  • Updates relic image base URL from relics.thecrypt.game to thecryptassets.duckdns.org for mainnet deployments
  • Sets Dungeon 2 raiding fee to "0" (previously 0.01 ETH) to make raids free

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

const initialBaseImageURL = (() => {
if (deployment.hre.network.name == "mainnet") {
return 'https://relics.thecrypt.game/';
return 'https://thecryptassets.duckdns.org/';
Copy link

Copilot AI Nov 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using DuckDNS (a free dynamic DNS service) for production mainnet assets may pose reliability and availability risks. DuckDNS hostnames can expire if not renewed, and the service doesn't provide uptime guarantees suitable for production. Consider using a more reliable hosting solution with proper domain management for mainnet deployments.

Suggested change
return 'https://thecryptassets.duckdns.org/';
if (process.env.RELIC_ASSETS_URL) {
return process.env.RELIC_ASSETS_URL;
} else {
throw new Error("RELIC_ASSETS_URL environment variable must be set for mainnet deployments. Do not use DuckDNS for production assets.");
}

Copilot uses AI. Check for mistakes.
@5p0rt5BEArD 5p0rt5BEArD merged commit b41fe98 into prod Nov 13, 2025
6 of 8 checks passed
@5p0rt5BEArD 5p0rt5BEArD deleted the relci-images-moved branch November 13, 2025 14:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant