CEP_Account.open()
With this method you can set the account to use for next operations.
Last updated
import { CEP_Account } from 'circular-enterprise-apis';
const Address = 'your-wallet-address';
let account = new CEP_Account();
async function run() {
account.open(Address);
//...
}
run();