You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating EncryptionType.SR25519 keypair i got this error java.lang.UnsatisfiedLinkError: dlopen failed: library "libsr25519java.so" not found error.
Code:
val SEED = "3132333435363738393031323334353637383930313233343536373839303132"
val SEED_BYTES: ByteArray = Hex.decode(SEED)
val keypair = SubstrateKeypairFactory.generate(EncryptionType.SR25519, SEED_BYTES)
val actualPrivate = Hex.toHexString(keypair.privateKey)
val actualPublic = Hex.toHexString(keypair.publicKey)
The text was updated successfully, but these errors were encountered:
When creating EncryptionType.SR25519 keypair i got this error java.lang.UnsatisfiedLinkError: dlopen failed: library "libsr25519java.so" not found error.
Code:
The text was updated successfully, but these errors were encountered: