-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'next' into T-23290/js-action-create-all-the-app-queries
- Loading branch information
Showing
14 changed files
with
166 additions
and
47 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
examples/viem-onboarding/README.md → examples/create-app/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Viem Onboarding Example | ||
# Create an App | ||
|
||
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/lens-protocol/lens-sdk/tree/next/examples/viem-onboarding) | ||
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/lens-protocol/lens-sdk/tree/next/examples/create-app) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import 'viem/window'; | ||
|
||
import { chains } from '@lens-network/sdk/viem'; | ||
import { PublicClient, testnet as protocolTestnet } from '@lens-protocol/client'; | ||
import { createApp, fetchApp } from '@lens-protocol/client/actions'; | ||
import { handleWith } from '@lens-protocol/client/viem'; | ||
import { Platform, app } from '@lens-protocol/metadata'; | ||
import { StorageClient, testnet as storageTestnet } from '@lens-protocol/storage-node-client'; | ||
import { type Address, createWalletClient, custom } from 'viem'; | ||
|
||
const chain = chains.testnet; | ||
|
||
// hoist account | ||
const [address] = (await window.ethereum!.request({ method: 'eth_requestAccounts' })) as [Address]; | ||
|
||
const walletClient = createWalletClient({ | ||
account: address, | ||
chain, | ||
transport: custom(window.ethereum!), | ||
}); | ||
|
||
const client = PublicClient.create({ | ||
environment: protocolTestnet, | ||
}); | ||
|
||
const sessionClient = await client | ||
.login({ | ||
builder: { | ||
address: walletClient.account.address, | ||
}, | ||
signMessage: async (message) => walletClient.signMessage({ message }), | ||
}) | ||
.match( | ||
(result) => result, | ||
(error) => { | ||
throw error; | ||
}, | ||
); | ||
|
||
const storageClient = StorageClient.create(storageTestnet); | ||
|
||
const metadata = app({ | ||
name: 'My App', | ||
url: 'https://example.com', | ||
description: 'My app description', | ||
platforms: [Platform.WEB], | ||
developer: '[email protected]', | ||
}); | ||
|
||
const { uri } = await storageClient.uploadAsJson(metadata); | ||
|
||
const created = await createApp(sessionClient, { | ||
metadataUri: uri, | ||
verification: false, // will become optional soon | ||
}) | ||
.andThen(handleWith(walletClient)) | ||
.andThen(sessionClient.waitForTransaction) | ||
.andThen((txHash) => fetchApp(sessionClient, { txHash })) | ||
.match( | ||
(result) => result, | ||
(error) => { | ||
throw error; | ||
}, | ||
); | ||
|
||
export default [`<h2>${created?.metadata?.name}</h2>`, `<p>Address: ${await created?.address}</p>`]; |
2 changes: 1 addition & 1 deletion
2
examples/viem-onboarding/package.json → examples/create-app/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# User Onboarding | ||
|
||
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/lens-protocol/lens-sdk/tree/next/examples/user-onboarding) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css"> | ||
</head> | ||
<body> | ||
<h1>User Onboarding Example</h1> | ||
<div id="app">Loading...</div> | ||
<script type="module"> | ||
import out from './index.ts'; | ||
document.querySelector('#app').innerHTML = Array.isArray(out) | ||
? out.map((x) => `<div style="margin-bottom: 16px;">${x}</div>`).join('') | ||
: out; | ||
</script> | ||
</body> | ||
</html> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "example-user-onboarding", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite" | ||
}, | ||
"dependencies": { | ||
"@lens-network/sdk": "canary", | ||
"@lens-protocol/client": "canary", | ||
"@lens-protocol/metadata": "next", | ||
"@lens-protocol/storage-node-client": "next", | ||
"viem": "^2.21.55" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^5.6.3", | ||
"vite": "^5.4.11" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "ESNext", | ||
"useDefineForClassFields": true, | ||
"lib": ["ESNext", "DOM"], | ||
"module": "ESNext", | ||
"moduleResolution": "Bundler", | ||
"strict": true, | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"esModuleInterop": true, | ||
"noEmit": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"noImplicitReturns": true, | ||
"skipLibCheck": true | ||
}, | ||
"include": ["./"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.