Skip to main content

Export Key


Users can at any time request to "export" their keys into a private key.

Step 1 : Create Session


Step 2 : Perform Export


  • Call trioSession.export() with the keyshare which returns Result of Success with Keyshare ByteArray or Failure with exception.

Example


Example.kt
suspend fun exportPrivateKey(keyshare: ByteArray, trioSession: TrioSession): ByteArray {
return withContext(Dispatchers.IO) {
trioSession.export(
keyshare = keyshare
).getOrThrow()
}
}

  • keyshare: The client's (In this case mobile) share of the MPC wallet.