DSELProtocol
Testnet Active ยท dsel-testnet-1

DSEL Testnet

Get testnet tokens, connect your node, and start building on the DSEL protocol. No permission required.

Testnet Faucet

100 TDSEL per address per 24 hours

100 TDSEL
Amount
100,000,000 utdsel
Denom
1 / 24h / address
Limit

Network Endpoints

RPC
https://rpc.dsel.ae:26657
REST API
https://api.dsel.ae
gRPC
grpc.dsel.ae:9090
Chain ID
dsel-testnet-1
Bech32 Prefix
dsel
Coin Denom
utdsel
Coin Minimal
1 utdsel = 0.000001 TDSEL
Explorer
https://explorer.dsel.ae
๐Ÿ”‘

Add to Keplr Wallet

Add DSEL testnet to your Keplr browser extension:

window.keplr.experimentalSuggestChain({
  chainId: "dsel-testnet-1",
  chainName: "DSEL Testnet",
  rpc: "https://rpc.dsel.ae:26657",
  rest: "https://api.dsel.ae",
  bip44: { coinType: 118 },
  bech32Config: {
    bech32PrefixAccAddr: "dsel",
    bech32PrefixAccPub: "dselpub",
    bech32PrefixValAddr: "dselvaloper",
    bech32PrefixValPub: "dselvaloperpub",
    bech32PrefixConsAddr: "dselvalcons",
    bech32PrefixConsPub: "dselvalconspub",
  },
  currencies: [{ coinDenom: "TDSEL", coinMinimalDenom: "utdsel", coinDecimals: 6 }],
  feeCurrencies: [{ coinDenom: "TDSEL", coinMinimalDenom: "utdsel", coinDecimals: 6,
    gasPriceStep: { low: 0.01, average: 0.025, high: 0.04 } }],
  stakeCurrency: { coinDenom: "TDSEL", coinMinimalDenom: "utdsel", coinDecimals: 6 },
})

Quick Start Guide

1

Install DSEL CLI

# Download and install the DSEL CLI
curl -sSL https://get.dsel.ae | bash

# Verify installation
dseld version
2

Create a Wallet

# Generate a new key
dseld keys add my-wallet --keyring-backend test

# Output: address, mnemonic โ€” SAVE YOUR MNEMONIC SECURELY
# Example address: dsel1xk9p7r2m4qzfah8w3e6nvb5cdt1j0ls2n8f7
3

Connect to Testnet

# Add testnet chain config
dseld config chain-id dsel-testnet-1
dseld config node https://rpc.dsel.ae:26657

# Check node status
dseld status | jq '.NodeInfo.network'
4

Request Tokens & Check Balance

# After getting tokens from faucet above:
dseld query bank balances <YOUR_ADDRESS> \
  --node https://rpc.dsel.ae:26657

# Send a test transaction
dseld tx bank send my-wallet dsel1abc...xyz \
  1000000utdsel \
  --chain-id dsel-testnet-1 \
  --gas auto --gas-adjustment 1.4 \
  --fees 1000utdsel -y
5

Register a Satellite (Testnet)

# Register satellite with TLE data
dseld tx satellite register \
  --tle-line1 "1 25544U 98067A   21275.52..." \
  --tle-line2 "2 25544  51.6442..." \
  --capabilities bandwidth,relay \
  --from my-wallet \
  --chain-id dsel-testnet-1 \
  --fees 5000utdsel -y

Need help? Join the developer community.