def new(): return newCLI(looper, tdir, subDirectory=subdir, conf=tconf, poolDir=tdirWithPoolTxns, domainDir=tdirWithDomainTxns)
def sponsorCli(looper, tdir): return newCLI(looper, tdir)
def stewardCli(nodeRegsForCLI, looper, tdir): return newCLI(nodeRegsForCLI, looper, tdir)
def cli(looper, tdir): return newCLI(looper, tdir)
def nodesCli(looper, tdir, nodeNames): cli = newCLI(looper, tdir) cli.enterCmd("new node all") checkAllNodesStarted(cli, *nodeNames) return cli
def newGuyCLI(looper, tdir, tconf): Setup(tdir).setupAll() return newCLI(looper, tdir, subDirectory='newguy', conf=tconf)