Create a wallet

How to create a new blockchain wallet

Create wallet

POST https://api-wallet.venly.io/api/wallets

Request Body

NameTypeDescription

secretType*

string

The blockchain on which to create the wallet

identifier

string

An identifier that can be used to query or group wallets

description

string

A description to describe the wallet.

pincode*

string

The pin that will encrypt and decrypt the wallet

{
    "success": true,
    "result": {
        "id": "f266a6e1-7e82-4d41-9aa2-41c079e72d09",
        "address": "0xf3e2C07F7ED3f45a24f2803c493080b21013f77c",
        "walletType": "WHITE_LABEL",
        "secretType": "ETHEREUM",
        "createdAt": "2021-01-15T14:45:13.265314",
        "archived": false,
        "alias": "tantalizing_horse",
        "description": "Just another test Wallet",
        "primary": false,
        "hasCustomPin": true,
        "identifier" : "user_id=ABC123"
        "balance": {
            "available": true,
            "secretType": "ETHEREUM",
            "balance": 0.0,
            "gasBalance": 0.0,
            "symbol": "ETH",
            "gasSymbol": "ETH",
            "rawBalance": "0",
            "rawGasBalance": "0",
            "decimals": 18
        }
    }
}

Object Types

pageSecretType

Last updated