Device & Accounts Info.

Get Device Info

You can get connected device information using getDeviceInfo() function.

// Get connected device information
var result
try{
    result = await DcentCLIConnector.getDeviceInfo()
}catch(e){
    result = e
}

getDeviceInfo() returns :

{
    "header": {
        "version": "1.0",
        "response_from": "device",
        "status": "success"
    },
    "body": {
        "command": "get_info",
        "parameter": {
            "device_id": "1234567890123456789012345678901234567890123456789012345678901234",
            "fw_version": "1.2.1.7c65",
            "ksm_version": "1.0.0.1139",
            "state": "secure",
            "coin_list": [
                {
                    "name": "BITCOIN"
                },
                {
                    "name": "ETHEREUM"
                },
                {
                    "name": "ERC20"
                },
                {
                    "name": "RSK"
                },
                {
                    "name": "RRC20"
                },
                {
                    "name": "RIPPLE"
                },
                {
                    "name": "MONACOIN"
                },
                {
                    "name": "EOS"
                }
            ],
            "fingerprint": {
                "max": 2,
                "enrolled": 1
            },
            "label": "My D'CENT"
        }
    }
}
  • device_id : device unique identifier

  • label : label of the device

  • fw_version : firmware version of the device

  • ksm_version : KSM(software running on SE) version of the device

  • coin_list : the list of coin which the device supported

    For more information, refer to https://dcentwallet.com/SupportedCoin

Set Device Label

If you want to change the label of device, you can do it using setLabel() fucntion.

After execute above code, you can see the modified label on your device when reboot the device.

Add & Sync Account

You can add account using syncAccount() function. You can create an account by specifying the coin type and key path of the account you want to add. If you want to add token type coin account, you must specify the coin name as the first 14 digits of contract address.

syncAccount() method can be used also for updating account. If the account of the specified key path is already exist, the syncAccount() method do not create account just sync the account information. For example, if you want to change the label of account or modify the balance, you can use the syncAccount() method.

address_path

address_path follows the BIP44 rules.

Accounts are distinguished by account' in address_path.

Retrieve Account

You can retrieve account list of connected device using getAccountInfo() function.

Returned account object has:

  • label : label of account

  • coin_group : coin group name of account

  • coin_name : coin name of account

  • address_path : address path of account

Last updated

Was this helpful?