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

Feat: Add react-siwx-wagmi #33

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
1 change: 1 addition & 0 deletions react/react-siwx-wagmi/.env.test
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VITE_PROJECT_ID=
27 changes: 27 additions & 0 deletions react/react-siwx-wagmi/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
.vercel

.env
17 changes: 17 additions & 0 deletions react/react-siwx-wagmi/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Reown AppKit Example using wagmi (Vite + React)

This is a [Vite](https://vitejs.dev) project together with React.

## Usage

1. Go to [Reown Cloud](https://cloud.reown.com) and create a new project.
2. Copy your `Project ID`
3. Rename `.env.example` to `.env` and paste your `Project ID` as the value for `VITE_PROJECT_ID`
4. Run `pnpm install` to install dependencies
5. Run `pnpm run dev` to start the development server

## Resources

- [Reown — Docs](https://docs.reown.com)
- [Vite — GitHub](https://github.com/vitejs/vite)
- [Vite — Docs](https://vitejs.dev/guide/)
28 changes: 28 additions & 0 deletions react/react-siwx-wagmi/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import js from '@eslint/js'
import globals from 'globals'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import tseslint from 'typescript-eslint'

export default tseslint.config(
{ ignores: ['dist'] },
{
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ['**/*.{ts,tsx}'],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
plugins: {
'react-hooks': reactHooks,
'react-refresh': reactRefresh,
},
rules: {
...reactHooks.configs.recommended.rules,
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
},
)
13 changes: 13 additions & 0 deletions react/react-siwx-wagmi/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/reown.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Reown Appkit Example</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
35 changes: 35 additions & 0 deletions react/react-siwx-wagmi/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name": "react-wagmi-appkit",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@reown/appkit": "1.6.4",
"@reown/appkit-adapter-wagmi": "1.6.4",
"@reown/appkit-siwx": "1.6.4",
"@tanstack/react-query": "^5.56.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"viem": "^2.21.53",
"wagmi": "^2.13.3"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1"
}
}
Binary file added react/react-siwx-wagmi/public/favicon.ico
Binary file not shown.
2 changes: 2 additions & 0 deletions react/react-siwx-wagmi/public/reown.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
113 changes: 113 additions & 0 deletions react/react-siwx-wagmi/src/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
:root {
--background: #ffffff;
--foreground: #171717;
}

html,
body {
max-width: 100vw;
overflow-x: hidden;
}

body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

* {
box-sizing: border-box;
padding: 0;
margin: 0;
}

a {
color: inherit;
text-decoration: none;
}

@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}
}

section {
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 16px;
background-color: #f9f9f9;
padding: 13px;
margin: 10px;
width: 90%;
text-align: left;
}

.pages {
align-items: center;
justify-items: center;
text-align: center;
}

button {
padding: 10px 15px;
background-color: white;
color: black;
border: 2px solid black;
border-radius: 6px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
margin: 15px; /* Space between buttons */
}

button:hover {
background-color: black;
color: white;
}

button:active {
background-color: #333; /* Dark gray on click */
color: white;
}

h1 {
margin: 20px;
}

h2 {
padding-bottom: 6px;
}

pre {
white-space: pre-wrap; /* Wrap text */
word-wrap: break-word; /* Break long words */
word-break: break-all;
}


.link-button {
background-color: black;
color: white;
padding: 5px 10px;
text-decoration: none;
border-radius: 5px;
}

.link-button:hover {
background-color: #333; /* Darken the background on hover */
}

.link-button:hover {
background-color: white; /* Change background to white on hover */
color: black; /* Change text color to black on hover */
}

.advice {
text-align: 'center';
margin-bottom: 10px;
line-height: 25px;
}
89 changes: 89 additions & 0 deletions react/react-siwx-wagmi/src/App.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
import { createAppKit } from '@reown/appkit/react'
import {
DefaultSIWX,
InformalMessenger,
EIP155Verifier,
SolanaVerifier,
LocalStorage
} from '@reown/appkit-siwx'

import { WagmiProvider } from 'wagmi'
import { useState } from 'react'

import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
import { ActionButtonList } from './components/ActionButtonList'
import { InfoList } from './components/InfoList'
import { projectId, metadata, networks, wagmiAdapter } from './config'

import "./App.css"

const queryClient = new QueryClient()

const generalConfig = {
projectId,
networks,
metadata,
themeMode: 'light' as const,
themeVariables: {
'--w3m-accent': '#000000',
}
}

// Create modal
createAppKit({
adapters: [wagmiAdapter],
...generalConfig,
siwx: new DefaultSIWX({
messenger: new InformalMessenger({
domain: 'reown.com',
uri: 'https://reown.com',
getNonce: async () => Math.round(Math.random() * 10000).toString()
}),
verifiers: [new EIP155Verifier(), new SolanaVerifier()],
storage: new LocalStorage({ key: '@appkit/siwx' })
}),
features: {
analytics: true // Optional - defaults to your Cloud configuration
}
})

export function App() {
const [transactionHash, setTransactionHash] = useState<`0x${string}` | undefined>(undefined);
const [signedMsg, setSignedMsg] = useState('');
const [balance, setBalance] = useState('');

const receiveHash = (hash: `0x${string}`) => {
setTransactionHash(hash); // Update the state with the transaction hash
};

const receiveSignedMsg = (signedMsg: string) => {
setSignedMsg(signedMsg); // Update the state with the transaction hash
};

const receivebalance = (balance: string) => {
setBalance(balance)
}


return (
<div className={"pages"}>
<img src="/reown.svg" alt="Reown" style={{ width: '150px', height: '150px' }} />
<h1>AppKit Wagmi React dApp Example</h1>
<WagmiProvider config={wagmiAdapter.wagmiConfig}>
<QueryClientProvider client={queryClient}>
<appkit-button />
<ActionButtonList sendHash={receiveHash} sendSignMsg={receiveSignedMsg} sendBalance={receivebalance}/>
<div className="advice">
<p>
This projectId only works on localhost. <br/>
Go to <a href="https://cloud.reown.com" target="_blank" className="link-button" rel="Reown Cloud">Reown Cloud</a> to get your own.
</p>
</div>
<InfoList hash={transactionHash} signedMsg={signedMsg} balance={balance}/>
</QueryClientProvider>
</WagmiProvider>
</div>
)
}

export default App
1 change: 1 addition & 0 deletions react/react-siwx-wagmi/src/assets/react.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading