Skip to content
Closed
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
4 changes: 2 additions & 2 deletions packages/local_db/seed.sample.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
"videoUrl": "",
"desc": "👩‍🏫 Learn how to build on Ethereum completing the scaffold-eth challenges.",
"image": "https://storage.googleapis.com/download/storage/v1/b/buidlguidl-v3.appspot.com/o/builds%2F0032da28a08871cbcb2922b00.png?generation=1647284971917513&alt=media",
"name": "🏃‍♀️ SpeedRunEthereum.com",
"name": "🏃‍♀️ Speedrun Ethereum.com",
"builder": "0x60583563D5879C2E59973E5718c7DE2147971807",
"featured": false,
"submittedTimestamp": 1658587661752,
Expand Down Expand Up @@ -280,7 +280,7 @@
"payload": {
"userAddress": "0x60583563D5879C2E59973E5718c7DE2147971807",
"buildUrl": "https://github.com/moonshotcollective/scaffold-directory",
"name": "🏃‍♀️ SpeedRunEthereum.com",
"name": "🏃‍♀️ Speedrun Ethereum.com",
"buildId": "06bb3c9d-784b-44d1-b7e2-1ae5affdfa8b"
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/app/_components/ApplyEligibilityLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const FeedbackMessage = ({
❌ <strong>Not eligible.</strong>
</p>
<p>
You need to complete at least <strong>{REQUIRED_CHALLENGE_COUNT} SpeedRun Ethereum challenges</strong> to
You need to complete at least <strong>{REQUIRED_CHALLENGE_COUNT} Speedrun Ethereum challenges</strong> to
apply for a grant.
<br />
<span>
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/app/api/grants/[grantId]/review/route.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export async function POST(req: NextRequest, { params }: { params: { grantId: st
}
} catch (sreError) {
// Log SRE errors but don't fail the main operation
console.error("[SRE] Error notifying SpeedRunEthereum:", sreError);
console.error("[SRE] Error notifying Speedrun Ethereum:", sreError);
}
})(),
);
Expand Down
4 changes: 2 additions & 2 deletions packages/nextjs/app/api/grants/new/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ export async function POST(req: Request) {
return NextResponse.json({ error: "Invalid form details submitted" }, { status: 400 });
}

// Legacy BG builder presence check removed. All eligibility is now based on the new SpeedRunEthereum system. If needed we could try do some kind of ROLE validation and make sure OG BuidlGuidl members that that certain ROLE in new SRE database.
// Legacy BG builder presence check removed. All eligibility is now based on the new Speedrun Ethereum system. If needed we could try do some kind of ROLE validation and make sure OG BuidlGuidl members that that certain ROLE in new SRE database.
const completed = await fetchAcceptedChallengeCount(signer);
if (completed < REQUIRED_CHALLENGE_COUNT) {
return NextResponse.json(
{
error: `Only builders with at least ${REQUIRED_CHALLENGE_COUNT} accepted SpeedRun Ethereum challenges can submit for grants`,
error: `Only builders with at least ${REQUIRED_CHALLENGE_COUNT} accepted Speedrun Ethereum challenges can submit for grants`,
},
{ status: 401 },
);
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/app/apply/_component/SubmitButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const SubmitButton = () => {
if (!isConnected) {
tooltip = "Please connect your wallet";
} else if (!isEligible) {
tooltip = `You need to complete at least ${REQUIRED_CHALLENGE_COUNT} SpeedRun Ethereum challenges to submit a grant${
tooltip = `You need to complete at least ${REQUIRED_CHALLENGE_COUNT} Speedrun Ethereum challenges to submit a grant${
typeof completedChallengesCount === "number" ? `. You have completed ${completedChallengesCount}.` : "."
}`;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/nextjs/app/my-grants/_components/SubmitModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ export const SubmitModal = ({ grant, closeModal }: { grant: GrantData; closeModa
rel="noopener noreferrer"
className="text-black-500 underline"
>
SpeedRun Ethereum profile
Speedrun Ethereum profile
</a>
&nbsp;and then submit the URL of your SpeedRun Ethereum build in this form. BG Grants team will review it to
&nbsp;and then submit the URL of your Speedrun Ethereum build in this form. BG Grants team will review it to
complete the grant.
</span>
</div>
Expand Down