Supported EVM networks
DFNS supports numerous EVM-compatible networks including:
See the complete list of supported networks.
Gas and fees
All EVM transactions require gas, paid in the network’s native token (ETH, MATIC, etc.).Fee priority
Use thepriority field in the Transfer Asset endpoint to control gas prices:
Transfers
Use the Transfer Asset endpoint for all EVM transfers:- Native tokens: Use
kind: Nativewith amount in wei (1 ETH = 10^18 wei) - ERC-20 tokens: Use
kind: Erc20with the token’scontractaddress - ERC-721 NFTs: Use
kind: Erc721with the NFT’scontractaddress andtokenId - ERC-7984 confidential tokens: Use
kind: Erc7984with the token’scontractaddress (see below)
Smart contract interactions
For complex smart contract interactions beyond simple transfers, use the Broadcast Transaction endpoint withkind: Transaction. For fee-sponsored smart contract calls, use kind: UserOperations with a fee sponsor.
Nonce management
On EVM networks, every transaction from an account must include a sequential nonce. Transactions execute in strict nonce order — if nonce5 is pending, nonce 6 cannot confirm until 5 does. This makes the nonce a scarce, ordered resource that must be managed carefully under concurrency.
Deterministic nonce allocation
DFNS manages nonces through a dedicated orchestration layer instead of relying on RPC queries. Nonces are reserved and allocated atomically across concurrent requests in an internal database. Once a nonce is assigned to a transaction, it cannot be reused. This guarantees that every transaction is constructed and serialized in the correct order, even under high volume. If a transaction fails or is replaced, the system handles the state update automatically.Transaction resource reservation
Every EVM transaction in DFNS explicitly reserves the resources it needs before broadcast:- Standard transactions reserve a specific nonce to ensure strict sequencing.
- Fee-sponsored transactions (
UserOperations) reserve multiple nonces to coordinate between fee sponsors and smart accounts.
Speed up and cancel
EVM transactions can be sped up or cancelled while they are pending in the mempool (statusBroadcasted). Cancellation also works on aborted transactions (status Aborted) to burn the reserved nonce and unblock subsequent transactions.
Both operations use Ethereum’s nonce-based transaction replacement:
- Speed up: Creates a new transaction with the same parameters but higher gas fees (10% bump or current Fast fees, whichever is higher). The higher-fee transaction replaces the original in the mempool.
- Cancel: Creates a zero-value self-transfer with the same nonce and higher gas. When mined, it consumes the nonce and invalidates the original transaction.
Confidential tokens (ERC-7984)
DFNS supports ERC-7984 confidential tokens powered by Zama’s FHE. These tokens encrypt balances and transfer amounts on-chain using Fully Homomorphic Encryption — no one can see your holdings by inspecting the blockchain.Delegate decrypt rights to DFNS
Because balances are encrypted, DFNS needs explicit permission from each wallet to decrypt and display them. Without delegation, balances appear as encrypted handles (eg.0xe9d6af...) instead of plaintext
amounts.
To enable decryption, call delegateForUserDecryption on the Zama ACL contract from your DFNS wallet. This is a one-time transaction per wallet per token
contract.
The ACL contract address is
0xf0Ffdc93b7E186bC2f8CB3dAA75D86d1930A433D on both Sepolia and Mainnet.
See the full working example in the DFNS TypeScript SDK: delegate-fhe-decrypt
Once the delegation transaction is confirmed, DFNS automatically decrypts balances and transfer amounts for that wallet and token.