User 🤖
Accessing the current users information
The User feature allows you to access information about the currently connected user.
To access the current user, you must implement a Network Enable element first.
Static User Features
Most user features are static
features, meaning they are loaded as soon as the user clicks the network enable
element. Additionally, some User Features have formatting and display options that allow you to customize how the returned data is displayed to the user.
Current User Address Feature
Display the current user's full Ethereum address:
Tag | Accepted Values | Required |
|
| Yes |
|
| Yes |
|
| optional |
Displaying Shortened Addresses
To show a truncated address, you can also add data-dh-modifier-display="short"
to the element like the example below:
This will display the address in the following format 0x5...EaEA
User Balance
Display the current user's balance:
Example Return Value: 7511222555444777333
Define the units and precision of the balance
To show the user's balance in ether add data-dh-modifier-display-units="ether"
To define the number of decimal places add data-dh-modifier-units=3
Tag | Accepted Values | Required |
|
| Yes |
| none | Yes |
|
| optional |
|
| optional |
Last updated