We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 837841a commit f49ba0aCopy full SHA for f49ba0a
library/src/androidTest/java/org/xmtp/android/library/SmartContractWalletTest.kt
@@ -87,6 +87,26 @@ class SmartContractWalletTest {
87
}
88
89
assertEquals(davonSCWClient.inboxId, davonSCWClient2.inboxId)
90
+ assertEquals(
91
+ davonSCWClient2.inboxId,
92
+ runBlocking { davonSCWClient.inboxIdFromIdentity(davonSCW.publicIdentity) }
93
+ )
94
+
95
+ runBlocking {
96
+ davonSCWClient.canMessage(listOf(boEOAWallet.publicIdentity))[boEOAWallet.publicIdentity.identifier]?.let {
97
+ assert(
98
+ it
99
100
+ }
101
102
103
104
+ boEOAClient.canMessage(listOf(davonSCW.publicIdentity))[davonSCW.publicIdentity.identifier]?.let {
105
106
107
108
109
110
111
112
@Test
0 commit comments