Update docs

This commit is contained in:
Jon Staab
2026-06-10 14:12:47 -07:00
parent a33af11b1b
commit dbd043f105
35 changed files with 164 additions and 179 deletions
+2 -2
View File
@@ -51,7 +51,7 @@ Creates a new signer instance that will communicate with the specified native ap
```typescript
import { Nip55Signer, getNip55 } from '@welshman/signer'
import { createEvent, NOTE } from '@welshman/util'
import { makeEvent, NOTE } from '@welshman/util'
async function example() {
try {
@@ -69,7 +69,7 @@ async function example() {
console.log('Public key:', pubkey)
// Sign an event
const event = createEvent(NOTE, {
const event = makeEvent(NOTE, {
content: "Hello from native app!",
tags: [["t", "test"]]
})