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 a Session is Deleted in the WalletConnectV2Kotlin Repository, "topic" is passed as an argument. It would be beneficial if "MetaData" could also be transmitted additionally. I want to know from which dApp the Session Delete occurred.
Current:
sealedclassDeletedSession : Model() {
data classSuccess(valtopic:String, valreason:String) : DeletedSession()
data classError(valerror:Throwable) : DeletedSession()
}
After:
sealedclassDeletedSession : Model() {
data classSuccess(valtopic:String,
valmetaData:Core.Model.AppMetaData?, // Herevalreason:String) : DeletedSession()
data classError(valerror:Throwable) : DeletedSession()
}
I might not have known. is it possible to know the metadata of a session that has been deleted with the topic alone? It would also be nice to have date information about when it was connected.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
When a Session is Deleted in the WalletConnectV2Kotlin Repository, "topic" is passed as an argument. It would be beneficial if "MetaData" could also be transmitted additionally. I want to know from which dApp the Session Delete occurred.
Current:
After:
I might not have known. is it possible to know the metadata of a session that has been deleted with the topic alone? It would also be nice to have date information about when it was connected.
Beta Was this translation helpful? Give feedback.
All reactions