FactoryContractInfo
type FactoryContractInfo = {  abi?: ContractInterface;  createAccount?: (    owner: string,  getAccountAddress?: (    owner: string,  ) => Promise<string>;};
type abi = ContractInterface;
function createAccount(  owner: string,
function getAccountAddress(  owner: string,): Promise<string>;