Skip to content

Commit

Permalink
change html w3m-* to appkit-*
Browse files Browse the repository at this point in the history
  • Loading branch information
rtomas committed Nov 15, 2024
1 parent 4f6762b commit c6cd836
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
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

0 comments on commit c6cd836

Please sign in to comment.