Skip to content

Commit 7d90357

Browse files
committed
fix: remove useless JSDocs
1 parent af2f538 commit 7d90357

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/TopicKeyManager.ts

-9
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,6 @@ export default class TopicKeyManager {
9898

9999
/**
100100
* Would be used to get all information required to decrypt/validate a given message
101-
*
102-
* @param contentTopic The topic name
103-
* @returns TopicResult | undefined
104101
*/
105102
getByTopic(contentTopic: string): TopicResult | undefined {
106103
const topicKey = this.topicKeys.get(contentTopic)
@@ -115,9 +112,6 @@ export default class TopicKeyManager {
115112

116113
/**
117114
* Used to know which topic/key to use to send to a given wallet address
118-
*
119-
* @param walletAddress The wallet address
120-
* @returns TopicResult | undefined
121115
*/
122116
getLatestByWalletAddress(walletAddress: string): TopicResult | undefined {
123117
const walletTopics = this.dmTopics.get(walletAddress)
@@ -130,9 +124,6 @@ export default class TopicKeyManager {
130124

131125
/**
132126
* Used to get the topic list to listen for all messages from a given wallet address
133-
*
134-
* @param walletAddress The wallet address
135-
* @returns TopicResult[]
136127
*/
137128
getAllByWalletAddress(walletAddress: string): TopicResult[] {
138129
const dmTopics = this.dmTopics

0 commit comments

Comments
 (0)