CEP_Account.open()
With this method you can set the account to use for next operations.
Function Signature
public boolean open(String address)
Parameters
Parameter Name
Datatype
address
String
Example
import circular.enterprise.apis.*;
//...
String walletAddress = "your_wallet_address";
account = new CEPAccount();
account.open(walletAddress);
//...
Last updated