Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.3.0 #948

Closed
wants to merge 25 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b1cb9e7
feat: suspense support for usePublication hook
krzysu May 2, 2024
aa460c7
Merge pull request #934 from lens-protocol/main
krzysu May 3, 2024
9eab6cb
Merge pull request #930 from lens-protocol/T-20234/usepublication
cesarenaldi May 8, 2024
d8b19df
feat: React Suspense support in usePublications hook
cesarenaldi May 7, 2024
9f403cf
Merge pull request #936 from lens-protocol/T-20006/usePublications-su…
cesarenaldi May 8, 2024
fcd04e3
chore: typedoc fixes
cesarenaldi May 8, 2024
0f65f90
Merge pull request #937 from lens-protocol/T-20006/usePublications-su…
cesarenaldi May 9, 2024
21f652d
fix: react native origin header (#927)
krzysu May 13, 2024
87776a6
react native example: add wallet connect example (#925)
krzysu May 14, 2024
1f34162
fix: refresh profile following after a follow or unfollow (#938)
krzysu May 14, 2024
46a648d
feat: React Suspense support for useFeed
cesarenaldi May 14, 2024
047eaa0
fix: lens-next-app - improve readme with getting started steps (#939)
krzysu May 15, 2024
dad4b23
Merge pull request #940 from lens-protocol/T-20337/useFeed-suspense
cesarenaldi May 15, 2024
3ffa198
feat: add React Suspense support to useProfiles hook
cesarenaldi May 15, 2024
53071ca
feat: adds React Suspense support to useSearchProfiles hook
cesarenaldi May 16, 2024
541a97d
Merge pull request #943 from lens-protocol/T-20337/useProfiles-suspense
cesarenaldi May 16, 2024
b44ef95
Merge pull request #944 from lens-protocol/T-20337/useSearchProfiles-…
cesarenaldi May 16, 2024
032c71c
feat: add suspense to useProfileFollowers and useProfileFollowing hooks
krzysu May 17, 2024
c312fd7
Merge pull request #946 from lens-protocol/T-20337/use-followers-foll…
cesarenaldi May 20, 2024
be49f3e
feat: add React Suspense support to useSearchPublications hook
cesarenaldi May 16, 2024
2c13b09
Merge pull request #945 from lens-protocol/T-20337/useSearchPublicati…
cesarenaldi May 20, 2024
afb3970
feat: support Shared Revenue collect module (#935)
cesarenaldi May 21, 2024
3e49110
feat: Suspense support to useExplorePublications, useExploreProfiles,…
cesarenaldi May 21, 2024
c44817d
Merge pull request #947 from lens-protocol/T-20337/useExplorePublicat…
cesarenaldi May 21, 2024
900c84a
chore: bumps up versions
cesarenaldi May 21, 2024
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
12 changes: 9 additions & 3 deletions examples/lens-next-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next

## Getting Started

First, run the development server:
Start by renaming the `.env.example` file to `.env` and then populate it with the necessary values:

- `NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID` - This is the Project ID for WalletConnect. You can create a free Project ID at [WalletConnect Cloud](https://cloud.walletconnect.com/sign-in).

After setting up the environment variables, launch the development server:

```bash
npm run dev
Expand All @@ -14,6 +18,8 @@ pnpm dev
bun dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
Once the server is running, open http://localhost:3000 in your browser to view the result.

You can begin editing the page by modifying `app/page.tsx`. The page will automatically update as you make changes to the file.

You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
Happy coding!
Loading