mirror of
https://github.com/nbd-wtf/nostr-tools.git
synced 2025-12-10 00:58:51 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d46c5f947c |
10
README.md
10
README.md
@@ -104,6 +104,9 @@ let pub = relay.publish(event)
|
|||||||
pub.on('ok', () => {
|
pub.on('ok', () => {
|
||||||
console.log(`${relay.url} has accepted our event`)
|
console.log(`${relay.url} has accepted our event`)
|
||||||
})
|
})
|
||||||
|
pub.on('seen', () => {
|
||||||
|
console.log(`we saw the event on ${relay.url}`)
|
||||||
|
})
|
||||||
pub.on('failed', reason => {
|
pub.on('failed', reason => {
|
||||||
console.log(`failed to publish to ${relay.url}: ${reason}`)
|
console.log(`failed to publish to ${relay.url}: ${reason}`)
|
||||||
})
|
})
|
||||||
@@ -125,7 +128,7 @@ import 'websocket-polyfill'
|
|||||||
### Interacting with multiple relays
|
### Interacting with multiple relays
|
||||||
|
|
||||||
```js
|
```js
|
||||||
import {SimplePool} from 'nostr-tools'
|
import {pool} from 'nostr-tools'
|
||||||
|
|
||||||
const pool = new SimplePool()
|
const pool = new SimplePool()
|
||||||
|
|
||||||
@@ -290,11 +293,6 @@ Please consult the tests or [the source code](https://github.com/fiatjaf/nostr-t
|
|||||||
</script>
|
</script>
|
||||||
```
|
```
|
||||||
|
|
||||||
## Plumbing
|
|
||||||
|
|
||||||
1. Install [`just`](https://just.systems/)
|
|
||||||
2. `just -l`
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Public domain.
|
Public domain.
|
||||||
|
|||||||
23
event.ts
23
event.ts
@@ -16,31 +16,23 @@ export enum Kind {
|
|||||||
ChannelMetadata = 41,
|
ChannelMetadata = 41,
|
||||||
ChannelMessage = 42,
|
ChannelMessage = 42,
|
||||||
ChannelHideMessage = 43,
|
ChannelHideMessage = 43,
|
||||||
ChannelMuteUser = 44,
|
ChannelMuteUser = 44
|
||||||
Report = 1984,
|
|
||||||
ZapRequest = 9734,
|
|
||||||
Zap = 9735,
|
|
||||||
RelayList = 10002,
|
|
||||||
ClientAuth = 22242,
|
|
||||||
Article = 30023
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export type EventTemplate = {
|
export type Event = {
|
||||||
|
id?: string
|
||||||
|
sig?: string
|
||||||
kind: Kind
|
kind: Kind
|
||||||
tags: string[][]
|
tags: string[][]
|
||||||
|
pubkey: string
|
||||||
content: string
|
content: string
|
||||||
created_at: number
|
created_at: number
|
||||||
}
|
}
|
||||||
|
|
||||||
export type Event = EventTemplate & {
|
export function getBlankEvent(): Event {
|
||||||
pubkey: string
|
|
||||||
id: string
|
|
||||||
sig: string
|
|
||||||
}
|
|
||||||
|
|
||||||
export function getBlankEvent(): EventTemplate {
|
|
||||||
return {
|
return {
|
||||||
kind: 255,
|
kind: 255,
|
||||||
|
pubkey: '',
|
||||||
content: '',
|
content: '',
|
||||||
tags: [],
|
tags: [],
|
||||||
created_at: 0
|
created_at: 0
|
||||||
@@ -67,7 +59,6 @@ export function getEventHash(event: Event): string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function validateEvent(event: Event): boolean {
|
export function validateEvent(event: Event): boolean {
|
||||||
if (typeof event !== 'object') return false
|
|
||||||
if (typeof event.content !== 'string') return false
|
if (typeof event.content !== 'string') return false
|
||||||
if (typeof event.created_at !== 'number') return false
|
if (typeof event.created_at !== 'number') return false
|
||||||
if (typeof event.pubkey !== 'string') return false
|
if (typeof event.pubkey !== 'string') return false
|
||||||
|
|||||||
1
index.ts
1
index.ts
@@ -9,7 +9,6 @@ export * as nip05 from './nip05'
|
|||||||
export * as nip06 from './nip06'
|
export * as nip06 from './nip06'
|
||||||
export * as nip19 from './nip19'
|
export * as nip19 from './nip19'
|
||||||
export * as nip26 from './nip26'
|
export * as nip26 from './nip26'
|
||||||
export * as nip57 from './nip57'
|
|
||||||
|
|
||||||
export * as fj from './fakejson'
|
export * as fj from './fakejson'
|
||||||
export * as utils from './utils'
|
export * as utils from './utils'
|
||||||
|
|||||||
107
nip57.ts
107
nip57.ts
@@ -1,107 +0,0 @@
|
|||||||
import {bech32} from '@scure/base'
|
|
||||||
|
|
||||||
import {Event, EventTemplate} from './event'
|
|
||||||
import {utf8Decoder} from './utils'
|
|
||||||
|
|
||||||
var _fetch: any
|
|
||||||
|
|
||||||
try {
|
|
||||||
_fetch = fetch
|
|
||||||
} catch {}
|
|
||||||
|
|
||||||
export function useFetchImplementation(fetchImplementation: any) {
|
|
||||||
_fetch = fetchImplementation
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function getZapEndpoint(metadata: Event): Promise<null | string> {
|
|
||||||
try {
|
|
||||||
let lnurl: string = ''
|
|
||||||
let {lud06, lud16} = JSON.parse(metadata.content)
|
|
||||||
if (lud06) {
|
|
||||||
let {words} = bech32.decode(lud06, 1000)
|
|
||||||
let data = bech32.fromWords(words)
|
|
||||||
lnurl = utf8Decoder.decode(data)
|
|
||||||
} else if (lud16) {
|
|
||||||
let [name, domain] = lud16.split('@')
|
|
||||||
lnurl = `https://${domain}/.well-known/lnurlp/${name}`
|
|
||||||
} else {
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
|
|
||||||
let res = await _fetch(lnurl)
|
|
||||||
let body = await res.json()
|
|
||||||
|
|
||||||
if (body.allowsNostr && body.nostrPubkey) {
|
|
||||||
return body.callback
|
|
||||||
}
|
|
||||||
} catch (err) {
|
|
||||||
/*-*/
|
|
||||||
}
|
|
||||||
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
|
|
||||||
export function makeZapRequest({
|
|
||||||
profile,
|
|
||||||
event,
|
|
||||||
amount,
|
|
||||||
relays,
|
|
||||||
comment = ''
|
|
||||||
}: {
|
|
||||||
profile: string
|
|
||||||
event: string | null
|
|
||||||
amount: string
|
|
||||||
comment: string
|
|
||||||
relays: string[]
|
|
||||||
}): EventTemplate {
|
|
||||||
let zr = {
|
|
||||||
kind: 9734,
|
|
||||||
created_at: Math.round(Date.now() / 1000),
|
|
||||||
content: comment,
|
|
||||||
tags: [
|
|
||||||
['p', profile],
|
|
||||||
['amount', amount],
|
|
||||||
['relays', ...relays]
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
if (event) {
|
|
||||||
zr.tags.push(['e', event])
|
|
||||||
}
|
|
||||||
|
|
||||||
return zr
|
|
||||||
}
|
|
||||||
|
|
||||||
export function makeZapReceipt({
|
|
||||||
zapRequest,
|
|
||||||
preimage,
|
|
||||||
bolt11,
|
|
||||||
paidAt
|
|
||||||
}: {
|
|
||||||
zapRequest: string
|
|
||||||
preimage: string | null
|
|
||||||
bolt11: string
|
|
||||||
paidAt: Date
|
|
||||||
}): EventTemplate {
|
|
||||||
let zr: Event = JSON.parse(zapRequest)
|
|
||||||
let tagsFromZapRequest = zr.tags.filter(
|
|
||||||
([t]) => t === 'e' || t === 'p' || t === 'a'
|
|
||||||
)
|
|
||||||
|
|
||||||
let zap = {
|
|
||||||
kind: 9735,
|
|
||||||
created_at: Math.round(paidAt.getTime() / 1000),
|
|
||||||
content: '',
|
|
||||||
tags: [
|
|
||||||
...tagsFromZapRequest,
|
|
||||||
['bolt11', bolt11],
|
|
||||||
['description', zapRequest]
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
if (preimage) {
|
|
||||||
zap.tags.push(['preimage', preimage])
|
|
||||||
}
|
|
||||||
|
|
||||||
return zap
|
|
||||||
}
|
|
||||||
29
package.json
29
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "nostr-tools",
|
"name": "nostr-tools",
|
||||||
"version": "1.4.2",
|
"version": "1.3.2",
|
||||||
"description": "Tools for making a Nostr client.",
|
"description": "Tools for making a Nostr client.",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -9,12 +9,11 @@
|
|||||||
"main": "lib/nostr.cjs.js",
|
"main": "lib/nostr.cjs.js",
|
||||||
"module": "lib/nostr.esm.js",
|
"module": "lib/nostr.esm.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@noble/hashes": "1.0.0",
|
"@noble/hashes": "^0.5.7",
|
||||||
"@noble/secp256k1": "^1.7.1",
|
"@noble/secp256k1": "^1.7.0",
|
||||||
"@scure/base": "^1.1.1",
|
"@scure/base": "^1.1.1",
|
||||||
"@scure/bip32": "^1.1.5",
|
"@scure/bip32": "^1.1.1",
|
||||||
"@scure/bip39": "^1.1.1",
|
"@scure/bip39": "^1.1.0"
|
||||||
"prettier": "^2.8.4"
|
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"decentralization",
|
"decentralization",
|
||||||
@@ -24,20 +23,20 @@
|
|||||||
"nostr"
|
"nostr"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^18.13.0",
|
"@types/node": "^18.0.3",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.51.0",
|
"@typescript-eslint/eslint-plugin": "^5.46.1",
|
||||||
"@typescript-eslint/parser": "^5.51.0",
|
"@typescript-eslint/parser": "^5.46.1",
|
||||||
"esbuild": "0.16.9",
|
"esbuild": "0.16.9",
|
||||||
"esbuild-plugin-alias": "^0.2.1",
|
"esbuild-plugin-alias": "^0.2.1",
|
||||||
"eslint": "^8.33.0",
|
"eslint": "^8.30.0",
|
||||||
"eslint-plugin-babel": "^5.3.1",
|
"eslint-plugin-babel": "^5.3.1",
|
||||||
"esm-loader-typescript": "^1.0.3",
|
"esm-loader-typescript": "^1.0.1",
|
||||||
"events": "^3.3.0",
|
"events": "^3.3.0",
|
||||||
"jest": "^29.4.2",
|
"jest": "^29.3.1",
|
||||||
"node-fetch": "^2.6.9",
|
"node-fetch": "2",
|
||||||
"ts-jest": "^29.0.5",
|
"ts-jest": "^29.0.3",
|
||||||
"tsd": "^0.22.0",
|
"tsd": "^0.22.0",
|
||||||
"typescript": "^4.9.5",
|
"typescript": "^4.9.4",
|
||||||
"websocket-polyfill": "^0.0.3"
|
"websocket-polyfill": "^0.0.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
64
relay.ts
64
relay.ts
@@ -19,8 +19,8 @@ export type Relay = {
|
|||||||
off: (type: RelayEvent, cb: any) => void
|
off: (type: RelayEvent, cb: any) => void
|
||||||
}
|
}
|
||||||
export type Pub = {
|
export type Pub = {
|
||||||
on: (type: 'ok' | 'failed', cb: any) => void
|
on: (type: 'ok' | 'seen' | 'failed', cb: any) => void
|
||||||
off: (type: 'ok' | 'failed', cb: any) => void
|
off: (type: 'ok' | 'seen' | 'failed', cb: any) => void
|
||||||
}
|
}
|
||||||
export type Sub = {
|
export type Sub = {
|
||||||
sub: (filters: Filter[], opts: SubscriptionOptions) => Sub
|
sub: (filters: Filter[], opts: SubscriptionOptions) => Sub
|
||||||
@@ -38,6 +38,10 @@ export type SubscriptionOptions = {
|
|||||||
export function relayInit(url: string): Relay {
|
export function relayInit(url: string): Relay {
|
||||||
var ws: WebSocket
|
var ws: WebSocket
|
||||||
var resolveClose: () => void
|
var resolveClose: () => void
|
||||||
|
var setOpen: (value: PromiseLike<void> | void) => void
|
||||||
|
var untilOpen = new Promise<void>(resolve => {
|
||||||
|
setOpen = resolve
|
||||||
|
})
|
||||||
var openSubs: {[id: string]: {filters: Filter[]} & SubscriptionOptions} = {}
|
var openSubs: {[id: string]: {filters: Filter[]} & SubscriptionOptions} = {}
|
||||||
var listeners: {
|
var listeners: {
|
||||||
connect: Array<() => void>
|
connect: Array<() => void>
|
||||||
@@ -70,6 +74,7 @@ export function relayInit(url: string): Relay {
|
|||||||
|
|
||||||
ws.onopen = () => {
|
ws.onopen = () => {
|
||||||
listeners.connect.forEach(cb => cb())
|
listeners.connect.forEach(cb => cb())
|
||||||
|
setOpen()
|
||||||
resolve()
|
resolve()
|
||||||
}
|
}
|
||||||
ws.onerror = () => {
|
ws.onerror = () => {
|
||||||
@@ -135,22 +140,15 @@ export function relayInit(url: string): Relay {
|
|||||||
return
|
return
|
||||||
case 'EOSE': {
|
case 'EOSE': {
|
||||||
let id = data[1]
|
let id = data[1]
|
||||||
if (id in subListeners) {
|
;(subListeners[id]?.eose || []).forEach(cb => cb())
|
||||||
subListeners[id].eose.forEach(cb => cb())
|
|
||||||
subListeners[id].eose = [] // 'eose' only happens once per sub, so stop listeners here
|
|
||||||
}
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
case 'OK': {
|
case 'OK': {
|
||||||
let id: string = data[1]
|
let id: string = data[1]
|
||||||
let ok: boolean = data[2]
|
let ok: boolean = data[2]
|
||||||
let reason: string = data[3] || ''
|
let reason: string = data[3] || ''
|
||||||
if (id in pubListeners) {
|
if (ok) pubListeners[id]?.ok.forEach(cb => cb())
|
||||||
if (ok) pubListeners[id].ok.forEach(cb => cb())
|
else pubListeners[id]?.failed.forEach(cb => cb(reason))
|
||||||
else pubListeners[id].failed.forEach(cb => cb(reason))
|
|
||||||
pubListeners[id].ok = [] // 'ok' only happens once per pub, so stop listeners here
|
|
||||||
pubListeners[id].failed = []
|
|
||||||
}
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
case 'NOTICE':
|
case 'NOTICE':
|
||||||
@@ -173,6 +171,7 @@ export function relayInit(url: string): Relay {
|
|||||||
async function trySend(params: [string, ...any]) {
|
async function trySend(params: [string, ...any]) {
|
||||||
let msg = JSON.stringify(params)
|
let msg = JSON.stringify(params)
|
||||||
|
|
||||||
|
await untilOpen
|
||||||
try {
|
try {
|
||||||
ws.send(msg)
|
ws.send(msg)
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
@@ -272,17 +271,50 @@ export function relayInit(url: string): Relay {
|
|||||||
if (!event.id) throw new Error(`event ${event} has no id`)
|
if (!event.id) throw new Error(`event ${event} has no id`)
|
||||||
let id = event.id
|
let id = event.id
|
||||||
|
|
||||||
|
var sent = false
|
||||||
|
var mustMonitor = false
|
||||||
|
|
||||||
trySend(['EVENT', event])
|
trySend(['EVENT', event])
|
||||||
|
.then(() => {
|
||||||
|
sent = true
|
||||||
|
if (mustMonitor) {
|
||||||
|
startMonitoring()
|
||||||
|
mustMonitor = false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(() => {})
|
||||||
|
|
||||||
|
const startMonitoring = () => {
|
||||||
|
let monitor = sub([{ids: [id]}], {
|
||||||
|
id: `monitor-${id.slice(0, 5)}`
|
||||||
|
})
|
||||||
|
let willUnsub = setTimeout(() => {
|
||||||
|
;(pubListeners[id]?.failed || []).forEach(cb =>
|
||||||
|
cb('event not seen after 5 seconds')
|
||||||
|
)
|
||||||
|
monitor.unsub()
|
||||||
|
}, 5000)
|
||||||
|
monitor.on('event', () => {
|
||||||
|
clearTimeout(willUnsub)
|
||||||
|
;(pubListeners[id]?.seen || []).forEach(cb => cb())
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
on: (type: 'ok' | 'failed', cb: any) => {
|
on: (type: 'ok' | 'seen' | 'failed', cb: any) => {
|
||||||
pubListeners[id] = pubListeners[id] || {
|
pubListeners[id] = pubListeners[id] || {
|
||||||
ok: [],
|
ok: [],
|
||||||
|
seen: [],
|
||||||
failed: []
|
failed: []
|
||||||
}
|
}
|
||||||
pubListeners[id][type].push(cb)
|
pubListeners[id][type].push(cb)
|
||||||
|
|
||||||
|
if (type === 'seen') {
|
||||||
|
if (sent) startMonitoring()
|
||||||
|
else mustMonitor = true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
off: (type: 'ok' | 'failed', cb: any) => {
|
off: (type: 'ok' | 'seen' | 'failed', cb: any) => {
|
||||||
let listeners = pubListeners[id]
|
let listeners = pubListeners[id]
|
||||||
if (!listeners) return
|
if (!listeners) return
|
||||||
let idx = listeners[type].indexOf(cb)
|
let idx = listeners[type].indexOf(cb)
|
||||||
@@ -292,10 +324,6 @@ export function relayInit(url: string): Relay {
|
|||||||
},
|
},
|
||||||
connect,
|
connect,
|
||||||
close(): Promise<void> {
|
close(): Promise<void> {
|
||||||
listeners = {connect: [], disconnect: [], error: [], notice: []}
|
|
||||||
subListeners = {}
|
|
||||||
pubListeners = {}
|
|
||||||
|
|
||||||
if (ws.readyState > 1) return Promise.resolve()
|
if (ws.readyState > 1) return Promise.resolve()
|
||||||
ws.close()
|
ws.close()
|
||||||
return new Promise<void>(resolve => {
|
return new Promise<void>(resolve => {
|
||||||
|
|||||||
Reference in New Issue
Block a user