diff --git a/contracts/scripts/deployRound.ts b/contracts/scripts/deployRound.ts index a15935947..91e71e8a5 100644 --- a/contracts/scripts/deployRound.ts +++ b/contracts/scripts/deployRound.ts @@ -132,7 +132,7 @@ async function main() { teamName: 'metadata.teamName', teamDescription: 'metadata.teamDescription', githubUrl: 'https://github.com/', - radicleUrl: 'https://radicle.com/', + radicleUrl: 'https://radicle.xyz/', websiteUrl: 'https://website.com/', twitterUrl: 'https://twitter.com/', discordUrl: 'https://discord.com/', @@ -153,7 +153,7 @@ async function main() { teamName: 'metadata.teamName', teamDescription: 'metadata.teamDescription', githubUrl: 'https://github.com/', - radicleUrl: 'https://radicle.com/', + radicleUrl: 'https://radicle.xyz/', websiteUrl: 'https://website.com/', twitterUrl: 'https://twitter.com/', discordUrl: 'https://discord.com/', diff --git a/contracts/scripts/deployTestRound.ts b/contracts/scripts/deployTestRound.ts index dcaf07979..9e2f89fec 100644 --- a/contracts/scripts/deployTestRound.ts +++ b/contracts/scripts/deployTestRound.ts @@ -110,7 +110,7 @@ async function main() { teamName: 'metadata.teamName', teamDescription: 'metadata.teamDescription', githubUrl: 'https://github.com/', - radicleUrl: 'https://radicle.com/', + radicleUrl: 'https://radicle.xyz/', websiteUrl: 'https://website.com/', twitterUrl: 'https://twitter.com/', discordUrl: 'https://discord.com/', @@ -131,7 +131,7 @@ async function main() { teamName: 'metadata.teamName', teamDescription: 'metadata.teamDescription', githubUrl: 'https://github.com/', - radicleUrl: 'https://radicle.com/', + radicleUrl: 'https://radicle.xyz/', websiteUrl: 'https://website.com/', twitterUrl: 'https://twitter.com/', discordUrl: 'https://discord.com/', @@ -151,7 +151,7 @@ async function main() { teamName: 'metadata.teamName', teamDescription: 'metadata.teamDescription', githubUrl: 'https://github.com/', - radicleUrl: 'https://radicle.com/', + radicleUrl: 'https://radicle.xyz/', websiteUrl: 'https://website.com/', twitterUrl: 'https://twitter.com/', discordUrl: 'https://discord.com/', @@ -171,7 +171,7 @@ async function main() { teamName: 'metadata.teamName', teamDescription: 'metadata.teamDescription', githubUrl: 'https://github.com/', - radicleUrl: 'https://radicle.com/', + radicleUrl: 'https://radicle.xyz/', websiteUrl: 'https://website.com/', twitterUrl: 'https://twitter.com/', discordUrl: 'https://discord.com/', @@ -190,7 +190,7 @@ async function main() { teamName: 'metadata.teamName', teamDescription: 'metadata.teamDescription', githubUrl: 'https://github.com/', - radicleUrl: 'https://radicle.com/', + radicleUrl: 'https://radicle.xyz/', websiteUrl: 'https://website.com/', twitterUrl: 'https://twitter.com/', discordUrl: 'https://discord.com/', @@ -210,7 +210,7 @@ async function main() { teamName: 'metadata.teamName', teamDescription: 'metadata.teamDescription', githubUrl: 'https://github.com/', - radicleUrl: 'https://radicle.com/', + radicleUrl: 'https://radicle.xyz/', websiteUrl: 'https://website.com/', twitterUrl: 'https://twitter.com/', discordUrl: 'https://discord.com/', @@ -229,7 +229,7 @@ async function main() { teamName: 'metadata.teamName', teamDescription: 'metadata.teamDescription', githubUrl: 'https://github.com/', - radicleUrl: 'https://radicle.com/', + radicleUrl: 'https://radicle.xyz/', websiteUrl: 'https://website.com/', twitterUrl: 'https://twitter.com/', discordUrl: 'https://discord.com/', @@ -249,7 +249,7 @@ async function main() { teamName: 'metadata.teamName', teamDescription: 'metadata.teamDescription', githubUrl: 'https://github.com/', - radicleUrl: 'https://radicle.com/', + radicleUrl: 'https://radicle.xyz/', websiteUrl: 'https://website.com/', twitterUrl: 'https://twitter.com/', discordUrl: 'https://discord.com/', @@ -268,7 +268,7 @@ async function main() { teamName: 'metadata.teamName', teamDescription: 'metadata.teamDescription', githubUrl: 'https://github.com/', - radicleUrl: 'https://radicle.com/', + radicleUrl: 'https://radicle.xyz/', websiteUrl: 'https://website.com/', twitterUrl: 'https://twitter.com/', discordUrl: 'https://discord.com/', diff --git a/vue-app/src/components/NavBar.vue b/vue-app/src/components/NavBar.vue index c5fdfa0e5..f763e30e0 100644 --- a/vue-app/src/components/NavBar.vue +++ b/vue-app/src/components/NavBar.vue @@ -18,7 +18,6 @@ src="@/assets/help.svg" />
-
-

CLR.fund

+

Ethereum Staking CLR

diff --git a/vue-app/src/plugins/round/criteria.ts b/vue-app/src/plugins/round/criteria.ts index da6bea37e..4f5a84dc9 100644 --- a/vue-app/src/plugins/round/criteria.ts +++ b/vue-app/src/plugins/round/criteria.ts @@ -4,7 +4,7 @@ export interface Criterion { description: string } -const baseCriterion: Criterion[] = [ +const BASE_CRITERION: Criterion[] = [ { emoji: '🤲', criterion: 'Free and open source', @@ -29,12 +29,6 @@ const baseCriterion: Criterion[] = [ description: 'The project must be yours or you must have permission from the project owner.', }, - { - emoji: '💻', - criterion: 'No clients', - description: - 'Client teams are so important but this round of funding is focused on supporting other parts of the ecosystem.', - }, ] /** @@ -43,9 +37,21 @@ const baseCriterion: Criterion[] = [ const ADDITIONAL_CRITERION: Criterion[] = [ { emoji: '💰', - criterion: 'Related to Ethereum upgrades and staking', + criterion: 'Related to Ethereum staking', description: 'Your project must support Ethereum staking/validating.', }, + { + emoji: '💻', + criterion: 'No clients', + description: + 'Client teams are so important but this round of funding is focused on supporting other parts of the ecosystem.', + }, + { + emoji: '💦', + criterion: 'No pools', + description: + 'No pools directly, but useful infrastructure and tooling built by pools can be supported.', + }, { emoji: '🆔', criterion: 'KYC', @@ -54,4 +60,7 @@ const ADDITIONAL_CRITERION: Criterion[] = [ }, ] -export const criteria: Criterion[] = [...baseCriterion, ...ADDITIONAL_CRITERION] +export const criteria: Criterion[] = [ + ...BASE_CRITERION, + ...ADDITIONAL_CRITERION, +] diff --git a/vue-app/src/router/index.ts b/vue-app/src/router/index.ts index 7cd34f5c3..312446857 100644 --- a/vue-app/src/router/index.ts +++ b/vue-app/src/router/index.ts @@ -35,7 +35,7 @@ const routes = [ name: 'landing', component: Landing, meta: { - title: 'Clr.fund', + title: 'Ethereum Staking CLR', }, }, { diff --git a/vue-app/src/views/Join.vue b/vue-app/src/views/Join.vue index b93a8e48e..afbfb25dc 100644 --- a/vue-app/src/views/Join.vue +++ b/vue-app/src/views/Join.vue @@ -13,7 +13,7 @@ :saveFormData="saveFormData" />
-

Join the round

+

Join the staking round

- + - + - + + Ethereum address

- This doesn’t have to be the same address as the one you use to - send your application. + The destination address for donations, which you'll use to + claim funds. This doesn't have to be the same address as the + one you use to send your application transaction.

Team description (optional)

If different to project description. Markdown supported. @@ -394,7 +396,7 @@ - +

-

Name

+

Project name

{{ form.project.name }}
diff --git a/vue-app/src/views/JoinLanding.vue b/vue-app/src/views/JoinLanding.vue index 6fd8ebab8..70c89da99 100644 --- a/vue-app/src/views/JoinLanding.vue +++ b/vue-app/src/views/JoinLanding.vue @@ -58,7 +58,7 @@
-

Join the funding round

+

Join the staking funding round

We’ll need some information about your project and a {{ formatAmount(deposit) }} {{ depositToken }} security @@ -108,7 +108,7 @@
-

Join the next funding round

+

Join the next staking funding round

We’ll need some information about your project and a {{ formatAmount(deposit) }} {{ depositToken }} security diff --git a/vue-app/src/views/Landing.vue b/vue-app/src/views/Landing.vue index f3e43641d..bd8b8b86c 100644 --- a/vue-app/src/views/Landing.vue +++ b/vue-app/src/views/Landing.vue @@ -9,7 +9,7 @@
-

Send your favorite projects to the moon!

+

Send your favorite Ethereum staking projects to the moon!

Every project you contribute to gets a portion of extra funding.
@@ -28,10 +28,10 @@ " >
-

Join the funding round

+

Join the staking funding round

Add your project to the next funding round. If you're working on - anything related to public goods, you can join in. + anything related to staking, you can join in.

Add project @@ -55,8 +55,8 @@

Every donation is amplified by the matching pool.

- This fundraiser rewards projects with the most unique demand, not - just those with the wealthiest backers. + This fundraiser rewards staking projects with the most unique + demand, not just those with the wealthiest backers.

- Thanks for contributing to the Ethereum ecosystem. If you change - your mind, you have + Thanks for contributing to the Ethereum staking ecosystem. If you + change your mind, you have