Go to content

Blockchain

The Blockchain module implements several specific operations for processing blockchain network cryptography and BIP, EIP and SLIP specifications.

The ECDSA signature, for example, is specialized to avoid signature malleabilitywith the restriction of LOW-S.

Examples of operations available in the Blockchain module:

  1. Extended Private Key (XPrv) generation in the BIP32 standard.
  2. Child Key Derivation in the BIP32 and SLIP10 standards.
  3. Address recovery.
  4. ECDSA digital signatures, in SECG strict DER standards (BIP62/66 and BIP 146) and Schnorr in BIP340 standard;
  5. Digital signatures EdDSA curve 25519.
  6. Signature verification.
  7. Import and export of keys via various formats (WIF, Hex, Sec1, Xpriv etc).
  8. Recovery of the public key with different formats (BIP32 Xpub, Sec1 with and without compression, Schnorr BIP340 etc).
  9. Split and Recover secrets with M from N scheme using SSS (Shamir's Secret Sharing).
  10. Operations with the curve alt_bn128according to EIP-196.

Attention

The blockchain module does not handle or assemble the transaction details for each particular network; this must be left to the application. The function of the HSM is to protect the private key in a secure environment, generate and return a signature according to the parameters passed by the calling application.

Compatible networks

Below is the list of networks whose encryption is compatible with HSM:

Info

The algorithms listed are those currently implemented in the HSM that allow transactions to be signed on the network and do not necessarily cover all the options defined in the network specification. If you have any questions, feel free to contact Dinamo Networks support and ask them.

Then Name Symbol Alg. Signature in HSM Curve Obs
Bitcoin BTC ECDSA secp256k1
Ethereum ETH ECDSA secp256k1
Tether USDT ECDSA secp256k1 token on various networks (e.g. Ethereum, Algorand)
Binance Coin BNB ECDSA secp256k1
USD Coin USDC ECDSA secp256k1 token
Solana SUN EdDSA edwards25519
XRP XRP ECDSA, EdDSA secp256k1, edwards25519
Terra Classic LUNC ECDSA secp256k1
Cardano ADA EdDSA edwards25519
Avalanche AVAX ECDSA secp256k1
Dogecoin DOGE ECDSA secp256k1
Binance USD BUSD ECDSA secp256k1 token
Polkadot DOT ECDSA, EdDSA secp256k1, edwards25519
Shiba Inu SHIB ECDSA secp256k1 token
Wrapped Bitcoin WBTC ECDSA, EdDSA secp256k1, edwards25519 token
Polygon MATIC ECDSA secp256k1
Cronos CRO ECDSA secp256k1
Dai DAI ECDSA secp256k1 token
NEAR Protocol NEAR ECDSA secp256k1
Litecoin LTC ECDSA secp256k1
TRON TRX ECDSA secp256k1
ApeCoin EPA ECDSA secp256k1 token
Cosmos ATOM ECDSA secp256k1
Bitcoin Cash BCH ECDSA secp256k1
Algorand SOMETHING EdDSA edwards25519
Brazilian Digital Token BRZ ECDSA secp256k1 token
Celo Brazilian Real CREAL ECDSA secp256k1 token
Celo Dollar CUSD ECDSA secp256k1 token
Axie Infinity AXS ECDSA secp256k1 token/coin
Fantom FTM ECDSA secp256k1
Uniswap UNI ECDSA secp256k1 token
Stellar XLM EdDSA edwards25519
Tezos XTZ ECDSA, EdDSA secp256k1, edwards25519
CELO CELO ECDSA secp256k1 token/coin
Toncoin TON EdDSA edwards25519
Chainlink LINK ECDSA secp256k1 token

The HSM implementation complies with the standards defined in the documentation listed below:

  • BIP32 - Hierarchical Deterministic Wallets
  • BIP62 - Dealing with malleability
  • BIP66 - Strict DER signatures
  • BIP340 - Schnorr Signatures for secp256k1
  • SLIP10 - Universal private key derivation from master private key
  • EIP-2 - Homestead Hard-fork Changes
  • EIP-196 - Precompiled contracts for addition and scalar multiplication on the elliptic curve alt_bn128
  • EIP-197 - Precompiled contracts for optimal ate pairing check on the elliptic curve alt_bn128