The System class provides methods to assist with account creation. The system class will almost always be used indirectly via the Chain class.
Reference to the Chain instance
createAccounts(accounts: string[], supplyAmount = this.chain.coreSymbol.convertAssetString(100)): Promise<Account[]>
Create multiple blockchain acounts.
createAccount(account: string, supplyAmount = this.chain.coreSymbol.convertAssetString(100), bytes: number = 1024 * 1024): Promise<Account>
Create a single blockchain account.