Testnet wallet. $DNDR is a utility token with no monetary value, and it is never sold.
This is a public research testnet: the chain can be reset, and a reset erases every balance,
including yours. Keys live in this browser tab only. Create a fresh wallet here — never import a
recovery phrase you use anywhere else, even one that is empty today: an address you reuse
elsewhere can receive real funds tomorrow.
Network
not connected
Open a wallet
Leaving this page clears these words. Write them down first — following
one of the links above, or the Back button, empties this box. Nothing is lost if it happens:
no wallet has been opened from these words yet, so a new phrase is one click away.
This page was left and came back, so the phrase it was
showing has been cleared. No wallet was opened from it — click “Create new wallet” for a new
one, or import the words you wrote down.
Account
—
? DNDR
? udndr
Get testnet DNDR
A new wallet holds nothing. Testnet $DNDR is handed out by a public faucet — these tokens have
no monetary value, they are not sold, and the network is resettable.
Faucethttp://api.dendranetwork.com:4500
Per request10 DNDR · 1 per address per 24 h
The faucet is proof-of-work gated (anti-Sybil), so it is called from a terminal rather than from
this page. Ask it for its current difficulty, mine the nonce, then post your address:
curl -s http://api.dendranetwork.com:4500/
python3 - <<'EOF'
import hashlib, itertools, json, urllib.request
ADDR = "dendra1..." # your address, copied above
BITS = 20 # pow_bits, as reported by the line above
for n in itertools.count():
h = hashlib.sha256(("%s:%d" % (ADDR, n)).encode()).digest()
if int.from_bytes(h, "big") >> (256 - BITS) == 0:
break
req = urllib.request.Request("http://api.dendranetwork.com:4500/",
json.dumps({"address": ADDR, "pow": str(n)}).encode(),
{"Content-Type": "application/json"})
print(urllib.request.urlopen(req).read().decode())
EOF
The faucet is served over plain HTTP: nothing secret travels there (a public address and a nonce),
but the reply is not authenticated — confirm the credit against your balance above, which is read
from the chain.