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: 2 additions & 0 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ NEXT_PUBLIC_CROSSMINT_API_KEY=

# Check all supported chains: https://docs.crossmint.com/introduction/supported-chains
NEXT_PUBLIC_CHAIN="solana" # "base-sepolia", "stellar", etc.
# List of plugins separated by commas. Only stellar supported for now.
NEXT_PUBLIC_PLUGINS="CDXHOOIEHL2ITNZUQ7XF7A5VJCSLT3KFTML4HTWBMR4FIT6PAXP5BIXR"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IDK check when it's been active at least and see if the transactions going out match at all and see if it's down and delete it if you want to

2 changes: 2 additions & 0 deletions app/providers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ if (!process.env.NEXT_PUBLIC_CROSSMINT_API_KEY) {
}

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

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Amount erc-20

const plugins = (process.env.NEXT_PUBLIC_PLUGINS?.split(",") ?? []) as any;

const customAppearance = {
colors: {
Expand Down Expand Up @@ -45,6 +46,7 @@ export function Providers({ children }: { children: React.ReactNode }) {
signer: {
type: "email",
},
plugins,
}}
>
{children}
Expand Down
4 changes: 2 additions & 2 deletions components/dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function Dashboard() {
</div>

{/* Main Dashboard Grid */}
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Delete it

<div className={`grid grid-cols-1 lg:grid-cols-${wallet?.chain !== "stellar" ? 3 : 2} gap-6`}>
{/* USDXM Balance & Wallet Details Column */}
<div className="flex flex-col gap-6">
{/* USDXM Balance Section */}
Expand Down Expand Up @@ -118,7 +118,7 @@ export function Dashboard() {
</div>
</div>
<TransferFunds />
<Activity />
{wallet?.chain !== "stellar" && <Activity />}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

0x66C743F33c777bDCCD0294f52583D3618Dfb70970x27efA8852Ee34fF1E616639BB5bB0820602ACE560x745188c8D8F04A66863f67411898268C63CFb6550x0b5C76a75F9675E0c8c94cd8d7A89Bdc9E52ABC0

</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@crossmint/client-sdk-react-ui": "2.3.4",
"@crossmint/client-sdk-react-ui": "2.4.2",
"clsx": "^2.1.1",
"next": "15.2.4",
"react": "^19.0.0",
Expand Down
Loading