Skip to main content

Overview

This guide walks you through creating EVM wallets using Dynamic’s Node SDK. You’ll learn how to set up different threshold signature schemes and understand the security implications of each choice.

Prerequisites

Before you begin, make sure you have:

Step 1: Choose Your Security Model

Dynamic supports two threshold signature schemes, each offering different security and availability trade-offs:
  • Security: Highest - requires both your server and Dynamic’s infrastructure
  • Availability: Lower - both parties must be online
  • Use case: High-value transactions, maximum security

TWO_OF_THREE

  • Security: High - requires 2 out of 3 shares
  • Availability: Medium - can tolerate one party being offline
  • Use case: Balanced security and availability

Step 2: Create Your First Wallet

Here’s a complete example of creating an EVM wallet:

Step 3: Handle Errors Gracefully

Always implement proper error handling for wallet creation:

Step 4: Persist walletMetadata and externalServerKeyShares

createWalletAccount() returns two pieces of state — each belongs in a different storage tier:
The SDK is stateless and you must pass walletMetadata to every subsequent sign / export / backup operation. See WalletMetadata and Storage Best Practices for the full pattern.

Best Practices

  1. Password Security: Use strong, unique passwords for each wallet
  2. Session Management: Implement proper session lifecycle management
  3. Error Handling: Always handle potential errors during wallet creation
  4. Monitoring: Log wallet creation events for audit purposes
  5. Backup Strategy: Implement secure backup strategies for key shares

Next Steps

Now that you’ve created a wallet, you can:
Last modified on May 21, 2026