From 6cba808a73d901a60a78c71b0c6663681a01f895 Mon Sep 17 00:00:00 2001 From: Aaron DeRuvo Date: Fri, 28 Jun 2024 18:15:36 +0300 Subject: [PATCH 1/2] rename to celo mondo --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- LICENSE | 2 +- README.md | 4 ++-- package.json | 9 +++++---- public/.well-known/walletconnect.txt | 2 +- public/site.webmanifest | 4 ++-- src/app/layout.tsx | 8 ++++---- src/config/config.ts | 2 +- src/features/account/AccountConnectForm.tsx | 2 +- src/features/account/AccountRegisterForm.tsx | 2 +- 10 files changed, 19 insertions(+), 18 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 962816e..3cb302e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -12,7 +12,7 @@ A description of the problem. ## Environment -- Celo Station app version +- Celo Mondo app version - Operating System - Browser - Wallet diff --git a/LICENSE b/LICENSE index 28b48f0..8d91323 100644 --- a/LICENSE +++ b/LICENSE @@ -6,7 +6,7 @@ This Software License Agreement (the "Agreement") is entered into by and between 1. LICENSE GRANT -Licensor hereby grants Licensee a non-exclusive, non-transferable license to use the software Celo Station (the "Software") for the sole purpose of testing, subject to the terms and conditions of this Agreement. +Licensor hereby grants Licensee a non-exclusive, non-transferable license to use the software Celo Mondo (the "Software") for the sole purpose of testing, subject to the terms and conditions of this Agreement. 2. RESTRICTIONS diff --git a/README.md b/README.md index 1bc546f..a2f780e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Celo Station +# Celo Mondo -Celo Station is a [DApp](https://en.wikipedia.org/wiki/Decentralized_application) for participating in staking and governance on [Celo](https://celo.org). +Celo Mondo is a [DApp](https://en.wikipedia.org/wiki/Decentralized_application) for participating in staking and governance on [Celo](https://celo.org). Earn rewards by locking & staking your CELO tokens. Help decide Celo's destiny by casting your vote in on-chain governance proposals. diff --git a/package.json b/package.json index a326245..b96d937 100644 --- a/package.json +++ b/package.json @@ -1,18 +1,19 @@ { - "name": "@celo-station/celo-station-web", + "name": "@celo-mondo/celo-mondo-web", "version": "1.0.0", "description": "Staking and Governance Tools for Celo", "keywords": [ "Celo", "Staking", - "Governance" + "Governance", + "Delgation" ], "author": "J M Rossy", "repository": { "type": "git", - "url": "https://github.com/jmrossy/celo-station" + "url": "https://github.com/celo-org/celo-mondo" }, - "homepage": "https://github.com/jmrossy/celo-station", + "homepage": "https://github.com/celo-org/celo-mondo", "dependencies": { "@celo/abis": "^11.0.0", "@headlessui/react": "^1.7.18", diff --git a/public/.well-known/walletconnect.txt b/public/.well-known/walletconnect.txt index 2f9972b..5c61cb7 100644 --- a/public/.well-known/walletconnect.txt +++ b/public/.well-known/walletconnect.txt @@ -1 +1 @@ -e9faf37e-58e3-4eec-88eb-bbd123ffa678=3b029b51817c20916c93e7f25bdff7163bd8c62650eec3ee5bf2b508632b9beb \ No newline at end of file +e9faf37e-58e3-4eec-88eb-bbd123ffa678=dc8fe78656f89ff75628f74d384d59bbe96f0801db870fd0f8903de7989e297d \ No newline at end of file diff --git a/public/site.webmanifest b/public/site.webmanifest index 460553b..4b91947 100644 --- a/public/site.webmanifest +++ b/public/site.webmanifest @@ -1,6 +1,6 @@ { - "name": "Celo Station", - "short_name": "Celo Station", + "name": "Celo Mondo", + "short_name": "Celo Mondo", "icons": [ { "src": "/android-chrome-192x192.png", diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fde42de..619beb5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,17 +8,17 @@ import { App } from './app'; export const dynamic = 'force-dynamic'; export const metadata: Metadata = { - applicationName: 'Celo Station', + applicationName: 'Celo Mondo', metadataBase: new URL(links.home), title: { - default: 'Celo Station | Staking & Governance for Celo', - template: '%s | Celo Station | Staking & Governance for Celo', + default: 'Celo Mondo | Staking & Governance for Celo', + template: '%s | Celo Mondo | Staking & Governance for Celo', }, description: 'Participate in Celo staking and governance. Start earning automatic rewards on your CELO!', keywords: ['celo', 'staking', 'governance', 'delegation', 'station'], openGraph: { - title: 'Celo Station', + title: 'Celo Mondo', description: 'Staking & Governance for Celo', images: [`/logos/celo-station.png`], }, diff --git a/src/config/config.ts b/src/config/config.ts index 7ca3708..e70f6f9 100644 --- a/src/config/config.ts +++ b/src/config/config.ts @@ -28,7 +28,7 @@ export const infuraRpcUrl = `${links.infura}/${infuraApiKey}`; export const config: Config = Object.freeze({ debug: isDevMode, version, - appName: 'Celo Station', + appName: 'Celo Mondo', chainId: ChainId.Celo, walletConnectProjectId, fornoApiKey, diff --git a/src/features/account/AccountConnectForm.tsx b/src/features/account/AccountConnectForm.tsx index 5bdf711..b4d3329 100644 --- a/src/features/account/AccountConnectForm.tsx +++ b/src/features/account/AccountConnectForm.tsx @@ -15,7 +15,7 @@ export function AccountConnectForm() { Wallet -

Welcome to Celo Station

+

Welcome to Celo Mondo

To make a transaction, you must first connect your wallet.

diff --git a/src/features/account/AccountRegisterForm.tsx b/src/features/account/AccountRegisterForm.tsx index 6e2c5a1..e11212a 100644 --- a/src/features/account/AccountRegisterForm.tsx +++ b/src/features/account/AccountRegisterForm.tsx @@ -31,7 +31,7 @@ export function AccountRegisterForm({
Loading...
-

Welcome to Celo Station

+

Welcome to Celo Mondo

Before you can lock, stake, or govern, you must first register with the Celo Accounts contract. From 1c64721344cf3a4185b50e77d0851e0d0b2596de Mon Sep 17 00:00:00 2001 From: Aaron DeRuvo Date: Fri, 28 Jun 2024 18:19:59 +0300 Subject: [PATCH 2/2] yarn lock --- yarn.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yarn.lock b/yarn.lock index 5a2d992..d6f4187 100644 --- a/yarn.lock +++ b/yarn.lock @@ -456,9 +456,9 @@ __metadata: languageName: node linkType: hard -"@celo-station/celo-station-web@workspace:.": +"@celo-mondo/celo-mondo-web@workspace:.": version: 0.0.0-use.local - resolution: "@celo-station/celo-station-web@workspace:." + resolution: "@celo-mondo/celo-mondo-web@workspace:." dependencies: "@celo/abis": "npm:^11.0.0" "@headlessui/react": "npm:^1.7.18"