jacany / nosbin

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
4 months agoa year old
Documentation comment not found for method definition getEventById
181		return event.id;
182	}
183
184	public getEventById(id: string, maxDelayms = 100): Promise<Event> {185		return this.relays.getEventById(id, this.getCurrentRelaysInArray(), maxDelayms);
186	}
187
Documentation comment not found for method definition postNewEvent
158	//
159	// Event Management
160	//
161	public async postNewEvent(ev: Event, returnNip19 = false): Promise<string | undefined> {162		let event: Event = {
163			...ev,
164			pubkey: this._pubkey,
Documentation comment not found for method definition getCurrentRelaysInArray
151		return this.pubkey;
152	}
153
154	public getCurrentRelaysInArray(): string[] {155		return this.relays.getRelayStatuses().map(([url, _]) => url);
156	}
157
Documentation comment not found for method definition getPubkeyFromExtension
145		return [this.pubkey, this.privkey];
146	}
147
148	public async getPubkeyFromExtension(): Promise<string | null> {149		if (browser && !window.nostr) return null;
150		this.pubkey = await window.nostr.getPublicKey();
151		return this.pubkey;
Documentation comment not found for method definition generateKeys
138		return input;
139	}
140
141	public generateKeys(): string[] {142		const genPriv = generatePrivateKey();
143		this.privkey = genPriv;
144		this.pubkey = getPublicKey(genPriv);