Skip to content

Commit

Permalink
add installation signer (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer authored Nov 19, 2024
1 parent 96f23f2 commit 6191f59
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions library/src/main/java/org/xmtp/android/library/Client.kt
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,10 @@ class Client() {
return Pair(ffiClient, dbPath)
}

fun signWithInstallationKey(message: String): ByteArray {
return ffiClient.signWithInstallationKey(message)
}

fun findGroup(groupId: String): Group? {
return try {
Group(this, ffiClient.conversation(groupId.hexToByteArray()))
Expand Down

0 comments on commit 6191f59

Please sign in to comment.