List Your KoreN NFT Now

Sell your KoreN NFTs or accept trades for other collectibles. Connect with buyers and traders in the KoreN ecosystem!

My NFTs

LISTED
Golden Chase the Ace Card

Golden Chase the Ace Card

Rarity Rare
Attributes 3X points - 2 Days
Status Unused
Listed Price 7,500 KN
Trade Status Accepting Trades
AVAILABLE
Death Chase the Ace Card

Death Chase the Ace Card

Rarity Rare
Attributes Pick Again
Status Unused
Special Effect
Pick a 2nd card during live CTA, but burn random unused NFT

Set Listing Options

Listing Preview

Preview

Golden Chase the Ace Card

Sale Price: 7,500 KN

Accepting Trades: Yes

Trade Preferences: Rare Booster Cards or Action Cards

Frequently Asked Questions

What happens if I enable both sale and trade options?
Buyers can choose to purchase directly or propose a trade. You'll have the final decision to accept any trade offer.
How do I review trade offers?
You'll receive a notification when a trade is proposed. View offers in your marketplace profile and accept, decline, or counter them.
Can I update or cancel my listing?
Yes, you can modify the price or trade preferences at any time or remove the listing.
// Card flip functionality document.addEventListener('DOMContentLoaded', function() { // Get all flipable cards const cards = document.querySelectorAll('.nft-card'); cards.forEach(card => { // Add click listener card.addEventListener('click', function(e) { // Only flip if clicking the flip arrow or the card itself (not child elements) if (e.target.closest('.flip-arrow') || e.target === card) { card.classList.toggle('flipped'); } }); // Add touch listener for mobile card.addEventListener('touchend', function(e) { if (e.target.closest('.flip-arrow') || e.target === card) { e.preventDefault(); // Prevent default touch behavior card.classList.toggle('flipped'); } }); }); // Toggle switch functionality const toggleSwitches = document.querySelectorAll('.toggle-switch'); toggleSwitches.forEach(toggle => { toggle.addEventListener('click', function() { this.classList.toggle('active'); // Show/hide trade preferences based on toggle state const tradePreferences = document.querySelector('.trade-preferences'); if (tradePreferences) { tradePreferences.style.display = this.classList.contains('active') ? 'block' : 'none'; } }); }); // Navigation active state const navLinks = document.querySelectorAll('.nav-link'); const currentPage = window.location.pathname.split("/").pop(); navLinks.forEach(link => { const linkPage = link.getAttribute('href').split("/").pop(); if (linkPage === currentPage) { link.classList.add('active'); } else { link.classList.remove('active'); } }); });