Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ nvm install 22 && nvm use 22
npm install @farcaster/quick-auth
```

See [AUTH.md](AUTH.md) for server-side token verification.
See [auth.md](auth.md) for server-side token verification.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ useEffect(() => {
const { fid, username } = user ?? {};
```

Or use FrameProvider (see [PROVIDER.md](PROVIDER.md)):
Or use FrameProvider (see [provider.md](provider.md)):
```typescript
import { useFrameContext } from '@/components/providers/FrameProvider';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ function AuthButton() {

## useNotification

Notifications require server-side implementation. See [NOTIFICATIONS.md](NOTIFICATIONS.md) for details.
Notifications require server-side implementation. See the [Farcaster notifications guide](https://miniapps.farcaster.xyz/docs/guides/notifications) for details.

### Before (MiniKit)
```typescript
Expand Down Expand Up @@ -449,4 +449,4 @@ function NotifyButton() {
}
```

See [NOTIFICATIONS.md](NOTIFICATIONS.md) for server-side implementation.
See the [Farcaster notifications guide](https://miniapps.farcaster.xyz/docs/guides/notifications) for server-side implementation.