$seedText ="manage manual recall harvest series desert melt police rose hollow moral pledge kitten position add";$factory =newLTO\AccountFactory('T'); // 'T' for testnet, 'L' for mainnet$account = $factory->seed($seedText);
Create an account from private sign key
$secretKey ='wJ4WH8dD88fSkNdFQRjaAhjFUZzZhV5yiDLDwNUnp6bYwRXrvWV8MJhQ9HL9uqMDG1n7XpTGZx7PafqaayQV8Rp';$factory =newLTO\AccountFactory('T'); // 'T' for testnet, 'L' for mainnet$account = $factory->create($secretKey);
Create an account from full info
$accountInfo = ['address'=>'3PLSsSDUn3kZdGe8qWEDak9y8oAjLVecXV1','sign'=> ['secretkey'=>'wJ4WH8dD88fSkNdFQRjaAhjFUZzZhV5yiDLDwNUnp6bYwRXrvWV8MJhQ9HL9uqMDG1n7XpTGZx7PafqaayQV8Rp','publickey'=>'FkU1XyfrCftc4pQKXCrrDyRLSnifX1SMvmx1CYiiyB3Y' ],'encrypt'=> ['secretkey'=>'BnjFJJarge15FiqcxrB7Mzt68nseBXXR4LQ54qFBsWJN','publickey'=>'BVv1ZuE3gKFa6krwWJQwEmrLYUESuUabNCXgYTmCoBt6' ]];$factory =newLTO\AccountFactory('T'); // 'T' for testnet, 'L' for mainnet$account = $factory->create($accountInfo);
Properties that are specified will be verified. Properties that are omitted will be generated where possible.