Default Crypto Assets

Using only the key we can access the default assets for most of the functions within the udrox wallet api

Depending on the selected network you are working with, you can use some keys to make it easier to work with the udrox wallet

Key
Networks Keys that can be used the asset

UDROX

UDROX, MINTME, MATIC, CRO, BNB

MINTME

UDROX, MINTME, CRO, BNB, ETH

COPC

UDROX, MINTME, MATIC, CRO

USDU

UDROX, MINTME, MATIC, CRO

USDC

UDROX, MINTME, MATIC, CRO, BNB, ETH

USDT

UDROX, MINTME, MATIC, CRO, BNB, ETH

WBTC

UDROX, MINTME, MATIC, CRO

ETH

UDROX, MINTME, ETH

BNB

UDROX, MINTME, MATIC, CRO

CRO

UDROX, MINTME

WETH

MATIC, CRO

MATIC

MATIC, BNB, ETH

We can see an example of the use

function transaction(){
    if(walletudrox.net=="UDROX"){    walletudrox.transaction("0x0B77E2947375318fb0F6395A0C36855628685D0a","5","UDROX");
    }
}

It is also possible to make a transaction only with the contract address of the token that you want to transfer. For example, I am going to transfer 5 personalized Tokens (0xdC33B264de35cF207c661FE37Cb16447F09b74B4) from the MINTME network:

function transaction(){
    if(walletudrox.net=="MINTME"){    walletudrox.transaction("0x0B77E2947375318fb0F6395A0C36855628685D0a","5","0xdC33B264de35cF207c661FE37Cb16447F09b74B4");
    }
}

At the moment we are increasing the default assets constantly, if you do not find your asset in this list you can use a custom asset in the documentation you can see how to implement it in the udrox wallet api

Last updated