With this method you can update the account parameters such as Nonce etc.
async update()
const Address = 'your-wallet-address'; let account = new CEP_Account(); //... const updateResult = account.updateAccount(); console.log("Account updated"); if (!updateResult) { console.log("Account Failed to Update"); return; } console.log("Account up to date"); console.log("Nonce : ", account.Nonce); //...
Last updated 11 days ago