-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updates demo app to latest Next / Privy & library version
provides contract deployments on Base / Sepolia better recognition for still active user sessions Signed-off-by: stadolf <[email protected]>
- Loading branch information
1 parent
6a3f055
commit 51db46a
Showing
9 changed files
with
1,958 additions
and
1,342 deletions.
There are no files selected for viewing
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
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,19 @@ | ||
import { createConfig } from "@privy-io/wagmi" | ||
import { http } from "viem" | ||
import { baseSepolia, sepolia } from "viem/chains" | ||
|
||
export const configureChainsConfig = createConfig({ | ||
chains: [baseSepolia,sepolia], | ||
ssr: true, | ||
transports: { | ||
[sepolia.id]: http(), | ||
[baseSepolia.id]: http() | ||
|
||
} | ||
}) | ||
|
||
declare module 'wagmi' { | ||
interface Register { | ||
config: typeof configureChainsConfig | ||
} | ||
} |
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.