public KeyPair(PublicKey publicKey, PrivateKey privateKey) { this.privateKey = privateKey; this.publicKey = publicKey; }
public PrivateKeys(PrivateKey spendKey, PrivateKey viewKey) { this.spendKey = spendKey; this.viewKey = viewKey; }
public WalletKeys(PublicKey publicSpendKey, PrivateKey privateSpendKey, PublicKey publicViewKey, PrivateKey privateViewKey) { this.spendKeys = new KeyPair(publicSpendKey, privateSpendKey); this.viewKeys = new KeyPair(publicViewKey, privateViewKey); }