Create Ethereum Wallets

This endpoint allows you to create ETH wallets.

To create a Bitcoin wallet for a user, the /wallet/create-eth-wallet API endpoint requires two parameters in the request:

  1. userEmail - The email address of the user for which you want to create the wallet. This links the wallet to their account.

  2. blockChainSupported - Specify ''Eth" to indicate the wallet should be created on the Bitcoin blockchain.

POST https://dev-api.altra.click/wallet/create-eth-wallet

Request Body

NameTypeDescription

userEmail*

Required

blockChainSupported*

String

// Create Bitcoin wallet for user
{  
      "userEmail": "user@gmail.com"
      "blockChainSupported": "Eth" 
}

The wallet creation API request will return a wallet address that can send and receive Eth and USDT on the Ethereum blockchain.

Specifically, the response will contain:

  • walletAddress - The public Polygon address tied to the created wallet

  • asset - ETH and USDT, the supported token on this wallet

Once a wallet is created successfully, users can top up the address by depositing ETH or USDT.

Last updated