Skip to content
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 .env.template
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NEXT_PUBLIC_CROSSMINT_API_KEY=

# Check all supported chains: https://docs.crossmint.com/introduction/supported-chains
NEXT_PUBLIC_CHAIN="solana" # "base-sepolia", "stellar", etc.
NEXT_PUBLIC_CHAIN="base-sepolia" # "solana", "stellar", etc.
2 changes: 1 addition & 1 deletion app/providers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if (!process.env.NEXT_PUBLIC_CROSSMINT_API_KEY) {
throw new Error("NEXT_PUBLIC_CROSSMINT_API_KEY is not set");
}

const chain = (process.env.NEXT_PUBLIC_CHAIN ?? "solana") as any;
const chain = (process.env.NEXT_PUBLIC_CHAIN ?? "base-sepolia") as any;

const customAppearance = {
colors: {
Expand Down