public Account accountFromSeed(String masterSeed) {
   IKeyPair kp = Seed.fromBase58(masterSeed).keyPair();
   return account(AccountID.fromKeyPair(kp), kp);
 }