From 45f82e279375030e0f0212f446d44168b6c7e095 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Quiroz?= Date: Fri, 30 Sep 2022 10:27:30 -0300 Subject: [PATCH] chore: update constants --- src/constants.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/constants.ts diff --git a/src/constants.ts b/src/constants.ts new file mode 100644 index 0000000000..92abc34178 --- /dev/null +++ b/src/constants.ts @@ -0,0 +1,11 @@ +// internal pages +export const DOWNLOADS_PAGE = '/downloads'; +export const DOCS_PAGE = '/docs'; +export const FAQ_PAGE = '/docs/faq'; +export const CONTRIBUTING_PAGE = `${DOCS_PAGE}/developers/contributing`; + +// external links +export const ETHEREUM_ORG_URL = 'https://ethereum.org'; +export const ETHEREUM_ORG_RUN_A_NODE_URL = 'https://ethereum.org/en/run-a-node/'; +export const ETHEREUM_FOUNDATION_URL = 'https://ethereum.foundation'; +export const GETH_REPO_URL = 'https://github.com/ethereum/go-ethereum';