CEP_Account.open()
With this method you can set the account to use for next operations.
Function Signature
open(address)
Parameters
Parameter Name
Datatype
address
String
Example
const Address = 'your-wallet-address';
let account = new CEP_Account();
account.open(Address);
//...
run();
Last updated