For the complete documentation index, see llms.txt. This page is also available as Markdown.

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