Reserved List

The following domais are reserved

  1. Top 100 KRC20 Communities

  2. Key Contributors

  3. Special Reserved Domain

The purpose of the reserved list is to secure domain names for the key contributors and communities.

Important note

  • The reserved domains will be kept for a 3 months period for claim.

  • To ensure fairness and transparency, KNS employs a Merkle Tree based verification. This ensures the reserved list is immutable and verifiable by anyone using cryptographic proofs, guaranteeing that it cannot be altered or manipulated.

Reserve Mechanism

  • Prior to launch, the list of reserved domains is determined and made public (See Proof below).

  • All the reserved domains are added to a Merkle Tree.

  • Anyone can verify that a domain is reserved by providing a cryptographic proof.

  • The proof is used to ensure that the domain is included in the reserved list and that the KNS platform has not been tampered with.

Proof

  • The reserved domain list is release below. Using all the domains, the root can be calculated.

    • Calculated merkle root: 09f78e4cc57ef2837e2d364b359f88da58c19b64cd79cdb1655b996ef14afcf7

  • The following is an example of how to prove that a domain is reserved.

import MerkleTree from "merkletreejs";
import { SHA256 } from "crypto-js";

function prove(domain: string) {
  const tree = new MerkleTree(domains, SHA256);
  const root = tree.getRoot().toString("hex");
  const proof = tree.getProof(domain);
  const res = tree.verify(proof, domain, root);
}

Reserved List

KNS Reserved List Google Sheet

<TOP 100 KRC20>

<KEY CONTRIBUTORS>

<KNS RESERVED>

<ECOSYSTEM RESERVED>

<CRYPTO RELATED RESERVED>

<MARKETING USED RESERVED>

Last updated