Orbital SDK · dseld Binary

Install
Orbital SDK

The official command-line tool for the DSEL network. One command to install, configure keys, query balances, and send transactions.

$
curl -sSL https://get.dsel.ae/dseld | bash

Supports Linux (amd64 / arm64) and macOS (Intel / Apple Silicon) · Manual download ↓


Choose your platform

The one-liner above auto-detects your OS and architecture. Or pick your platform below for the exact command.

x86_64 / amd64 Most common
# Auto-install (recommended)
curl -sSL https://get.dsel.ae/dseld | bash
# Or direct download
curl -L https://get.dsel.ae/bin/dseld-linux-amd64 \
  -o /usr/local/bin/dseld
chmod +x /usr/local/bin/dseld
arm64 / aarch64
# Auto-install (recommended)
curl -sSL https://get.dsel.ae/dseld | bash
# Or direct download
curl -L https://get.dsel.ae/bin/dseld-linux-arm64 \
  -o /usr/local/bin/dseld
chmod +x /usr/local/bin/dseld
Intel (x86_64)
# Auto-install (recommended)
curl -sSL https://get.dsel.ae/dseld | bash
# Or direct download
curl -L https://get.dsel.ae/bin/dseld-darwin-amd64 \
  -o /usr/local/bin/dseld
chmod +x /usr/local/bin/dseld
Apple Silicon (arm64) M1 / M2 / M3
# Auto-install (recommended)
curl -sSL https://get.dsel.ae/dseld | bash
# Or direct download
curl -L https://get.dsel.ae/bin/dseld-darwin-arm64 \
  -o /usr/local/bin/dseld
chmod +x /usr/local/bin/dseld

Direct binary downloads

Download the dseld binary directly for your platform without running the installer.


Get up and running

After installation, use these commands to start interacting with the DSEL network.

1

Verify installation

Confirm dseld is installed and check the version.

dseld version
2

Create a wallet key

Generate a new key pair. Save the mnemonic securely — it cannot be recovered.

dseld keys add mykey
# List all keys
dseld keys list
# Show address for a key
dseld keys show mykey --bech acc
3

Configure the RPC node

Set the DSEL testnet RPC endpoint as your default node.

dseld config node https://rpc.dsel.ae
dseld config chain-id dsel-testnet-1
4

Query your balance

Check the TDSEL balance for any address on testnet.

dseld query bank balances dsel1<your-address>
  --node https://rpc.dsel.ae
  --chain-id dsel-testnet-1
5

Send tokens

Transfer TDSEL from one account to another on testnet.

dseld tx bank send \
  mykey \
  dsel1recipient... \
  1000000utdsel \
  --chain-id dsel-testnet-1 \
  --node https://rpc.dsel.ae \
  --gas auto \
  --gas-adjustment 1.3
6

Explore more commands

View all available commands and flags.

# Top-level help
dseld --help
# Subcommand help
dseld tx --help
dseld query --help

System requirements

Minimum requirements to run the DSEL Orbital SDK.

🖥️
Operating System
Linux or macOS
⚙️
Architecture
64-bit (amd64 / arm64)
🧠
RAM
512 MB minimum
💾
Disk Space
50 MB for binary
🌐
Internet
Required for install
🔧
Dependencies
curl, bash

DSEL chains

The Orbital SDK connects to both the live testnet and the upcoming mainnet.

Live
Testnet
Native token: TDSEL (utdsel)
Chain ID dsel-testnet-1
RPC rpc.dsel.ae
Bech32 prefix dsel1...
Denomination utdsel
Coming Soon
Mainnet
Native token: DSEL (udsel)
Chain ID dsel-1
RPC rpc.dsel.ae
Bech32 prefix dsel1...
Denomination udsel

Read the full SDK documentation

Explore all dseld commands, transaction types, key management, node configuration, and advanced usage.