Java
Requirements
Accounts
Creation
import com.ltonetwork.client.core.AccountFactory;
String seed = "my seed phrase";
AccountFactory af = new AccountFactory('T');
Account acc = af.seed(seed); import com.ltonetwork.client.types.PublicKey;
import com.ltonetwork.client.core.AccountFactory;
PublicKey signPublicKey = new PublicKey("wJ4WH8dD88fSkNdFQRjaAhjFUZzZhV5yiDLDwNUnp6bYwRXrvWV8MJhQ9HL9uqMDG1n7XpTGZx7PafqaayQV8Rp", Encoding.BASE58);
AccountFactory af = new AccountFactory('T');
Account acc = af.createPublic(signPublicKey);Signing (ED25519)
Encryption (X25519)
Public layer
Last updated