const { CEP_Account } = require('circular-enterprise-apis');
const Address = 'your-wallet-address';
let account = new CEP_Account();
async function run() {
//...
account.close();
//...
}
run();
import { CEP_Account } from 'circular-enterprise-apis';
const Address = 'your-wallet-address';
let account = new CEP_Account();
async function run() {
//...
account.close();
//...
}
run();