Duck-Verse

Crypto training & token creation
The CoinCoin to learn crypto the simple way.

Proof of Ownership

Cryptographic signature — live verification.

This page publishes a signed message and its signature. The script below lets you verify that the signature was indeed produced by the official address:

Official address:

0xD701A10EeE994c636188A33cAD32bB94dF098c42

Signed message

Exact copy of the message that was signed:

Duck-Verse — Proof of Ownership.
Project : CoinCoin (CCN)
Site : duck-verse.com
Author : AlphaDuck
Official address : 0xD701A10EeE994c636188A33cAD32bB94dF098c42
Date (UTC) : 2025-11-12T00:00:00Z
Nonce : ccn-0001
                

Signature

Hexadecimal signature (EIP-191 / personal_sign):

0x74a9dcffb0163a850c8289e71189df1ebcd483d57bade9029bd12dc36cc64d4e0f2e1472eed363a72e10616cfac51a3ebad63b7604941e0efa9ad7fca28cda1e1b
                

How this signature was generated

  1. Connect the official address in MetaMask.

  2. Open the browser console (F12) on this page, then run the snippet below to sign via personal_sign.
const msg = document.getElementById('msg').textContent.trim();
const [acc] = await window.ethereum.request({ method: 'eth_requestAccounts' });
const sig = await window.ethereum.request({
method: 'personal_sign',
params: [msg, acc]
});
console.log('Signature:', sig);