> For the complete documentation index, see [llms.txt](https://docswallet.udrox.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docswallet.udrox.com/reference/api-reference-medium-level/default-attributes.md).

# Default attributes

The use of the attributes of the udrox account is very simple, we just write the walletudrox and the attribute that we want to obtain, these attributes must be called after the connection with the client user's wallet

```javascript
var walletAddress = walletudrox.address;
```

We can obtain information from the udrox wallet of our client user the public attributes are:

<table><thead><tr><th>Object attribute</th><th>Explanation</th><th data-hidden></th></tr></thead><tbody><tr><td>walletudrox.address<br>(String)</td><td>We obtain the address of the wallet of the account selected by the user<br>Ex response: "0xcBBB92889BFEd827F64649dFDdF9fEF3d35037F0"</td><td></td></tr><tr><td>walletudrox.net<br>(String)</td><td>We obtain the network currently selected by the user in the Udrox Wallet<br>Ex response: "UDROX"</td><td></td></tr><tr><td>walletudrox.shortWallet<br>(String)</td><td>We obtain the address of the wallet shortened and separated with points<br>Ex response: "0xcBB...037F0"</td><td></td></tr><tr><td>walletudrox.nsu<br>(String)</td><td>We obtain the address of the domain (Based on NSU UDROX) of the client's wallet<br>Ex response: "MYWALLET.UDROX"</td><td></td></tr><tr><td>walletudrox.netWorkName<br>(String)</td><td>Get the full name of the network selected by the client user<br>Ex response: "Udrox Mintme mainnet"</td><td></td></tr><tr><td>walletudrox.balance<br>(Object Array)</td><td>We obtain all the available and active balances in the udrox wallet of the network selected by the user client<br>Ex response: [USDC: '0.0', MINTME: '3.84151916289275', main: '4790.0', UDROX: '4790.0'] or "[]" if you haven't uploaded the balances</td><td></td></tr><tr><td>walletudrox.contracts<br>(Object Array)</td><td>Get all available assets from client user<br>Ex response: {UDROX: {…}, MINTME: {…}, USDC: {…}} </td><td></td></tr><tr><td>walletudrox.listNets<br>(Object Array)</td><td>We show all the active networks in the udrox wallet that the client user has in their wallet<br>Ex response: {UDROX: {…}, MINTME: {…}, CRO: {…}}</td><td></td></tr><tr><td>walletudrox.userAccounts<br>(Object Array)</td><td><p>We obtain the accounts that the client user has in their udrox wallet</p><p>Ex response: 0 : {address: '0x9E9183DdBeF9fDE381099aAc58CbAaE64BCab6Ed', nsu: 'CUENTAX1.UDROX'}, 1 : {address: '0x689D272dA06e3aBbb1d8e15D1e72C9c827E52009', nsu: 'CUENTAX1.UDROX'}</p></td><td></td></tr></tbody></table>

We show some examples of the use of the udrox api attributes

```javascript
walletudrox.onConnect = function(){
    var walletActive = walletudrox.address; // string
    var netActive = walletudrox.net; // string
    var shortWallet = walletudrox.shortWallet; // string
    var nsuActive = walletudrox.nsu; // string
    var netActive = walletudrox.netWorkName; // string
};
```

```javascript
function listAssetsClient(){
 Object.values(walletudrox.contracts).forEach(cryptoactive => {
   console.log(cryptoactive["Simbolo"]);
 });
}
```
