Export Key
Users can at any time request to "export" their keys into a private key.
Step 1 : Create Session
- Create TrioSession if you haven't already.
Step 2 : Perform Export
- Call
trioSession.export()
with the keyshare which returnsResult
ofSuccess
with KeyshareByteArray
orFailure
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.