From 7ef451ca0c2383936b05876c14efd2d7ea98f07d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20S=C3=A1nchez?= Date: Thu, 6 Jun 2024 18:33:12 +0200 Subject: [PATCH] 0.25 => 0.15 --- packages/nextjs/app/_components/CommunityGrant.tsx | 4 ++-- packages/nextjs/app/api/grants/new/route.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/nextjs/app/_components/CommunityGrant.tsx b/packages/nextjs/app/_components/CommunityGrant.tsx index c2f6fa9..b9816aa 100644 --- a/packages/nextjs/app/_components/CommunityGrant.tsx +++ b/packages/nextjs/app/_components/CommunityGrant.tsx @@ -29,7 +29,7 @@ export const CommunityGrant = () => {

Are you a BG member eager to make an impact in the ecosystem? At BuidlGuidl, we're excited to support - your builds. We offer sponsorships starting at 0.25 ETH for projects that drive the community forward. + your builds. We offer sponsorships starting at 0.15 ETH for projects that drive the community forward.

@@ -67,7 +67,7 @@ export const CommunityGrant = () => { Who section background

Amount

-

Starting at 0.25 ETH

+

Starting at 0.15 ETH

diff --git a/packages/nextjs/app/api/grants/new/route.ts b/packages/nextjs/app/api/grants/new/route.ts index 9cf4dfc..390a7b6 100644 --- a/packages/nextjs/app/api/grants/new/route.ts +++ b/packages/nextjs/app/api/grants/new/route.ts @@ -13,7 +13,7 @@ type ReqBody = { }; // Hardcoded default ask amount -const askAmount = 0.25; +const askAmount = 0.15; // TODO: We could also add extra validation of nonce export async function POST(req: Request) { try {