Quick Start
Welcome to the powerful udrox wallet API! Our API is designed to be secure, providing a safe environment for both customers and merchants, you can use functions of any network or cryptocurrency
Install the library Javascript
Include library inside head:
<script src="https://wallet.udrox.com/api/wallet_v1.js" type="application/javascript"></script>Configuring your api for the udrox wallet is very easy in intermediate mode
# code javascript
walletudrox.onConnect = function(){
// is executed after the client user connects his wallet
};
// methods for transactions
walletudrox.onSendError = function(){
// the client user cancels or there is an error with the transaction
}
walletudrox.onBeforeSend = function(){
// before the client user submits a transaction
}
walletudrox.onSend = function(hash){
// the user completes the transaction
}
walletudrox.acceptNets = ["UDROX"];
walletudrox.preferNet = "UDROX";
walletudrox.needConfirmations = 0;
walletudrox.notifyServer = "";Last updated