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: change html w3m-* to appkit-* #772

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
2 changes: 1 addition & 1 deletion dapps/appkit-siwe/next/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import styles from "./page.module.css";
export default function Home() {
return (
<main className={styles.main}>
<w3m-button />
<appkit-button />
</main>
);
}
2 changes: 1 addition & 1 deletion dapps/appkit-siwe/react/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<WagmiProvider config={wagmiAdapter.wagmiConfig}>
<QueryClientProvider client={queryClient}>
<div className="centered-div">
<w3m-button />
<appkit-button />
</div>
</QueryClientProvider>
</WagmiProvider>
Expand Down
2 changes: 1 addition & 1 deletion dapps/appkit/react-ethers/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function App() {

return (
<div style={{ display: 'flex', flexDirection: 'column', alignItems: 'center' }}>
<w3m-button />
<appkit-button />
<Hooks />
<p>
<button onClick={() => modal.adapters![0].connectionControllerClient?.disconnect()}>Disconnect JS</button>
Expand Down
2 changes: 1 addition & 1 deletion dapps/appkit/react-ethers5/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function App() {

return (
<div style={{ display: 'flex', flexDirection: 'column', alignItems: 'center' }}>
<w3m-button />
<appkit-button />
<Hooks />
<p>
<button onClick={() => modal.adapter?.connectionControllerClient?.disconnect()}>Disconnect</button>
Expand Down
2 changes: 1 addition & 1 deletion dapps/appkit/react-solana/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function App() {
return (
<div style={{ display: 'flex', flexDirection: 'column', alignItems: 'center' }}>
<h2>Reown AppKit + Solana</h2>
<w3m-button />
<appkit-button />
<SolanaHooks />
<p>
<button onClick={() => modal.adapter?.connectionControllerClient?.disconnect()}>Disconnect</button>
Expand Down
2 changes: 1 addition & 1 deletion dapps/appkit/react-wagmi/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function App() {
<div style={{ display: 'flex', flexDirection: 'column', alignItems: 'center' }}>
<WagmiProvider config={wagmiAdapter.wagmiConfig}>
<QueryClientProvider client={queryClient}>
<w3m-button />
<appkit-button />
<WagmiHooks />
<button onClick={() => modal.adapter?.connectionControllerClient?.disconnect()}>Disconnect JS</button>

Expand Down
4 changes: 2 additions & 2 deletions dapps/appkit/vue-solana/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

<!-- AppKit UI Components -->
<div class="button-group">
<w3m-button />
<w3m-network-button />
<appkit-button />
<appkit-network-button />
</div>
<br />
<!-- Modal Controls -->
Expand Down
4 changes: 2 additions & 2 deletions dapps/appkit/vue-wagmi/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

<!-- AppKit UI Components -->
<div class="button-group">
<w3m-button />
<w3m-network-button />
<appkit-button />
<appkit-network-button />
</div>
<br />
<!-- Modal Controls -->
Expand Down