mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-05 10:55:02 +00:00
14 lines
683 B
TypeScript
14 lines
683 B
TypeScript
// 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';
|
|
export const GETH_TWITTER_URL = 'https://twitter.com/go_ethereum';
|
|
export const GETH_DISCORD_URL = 'https://discord.com/invite/nthXNEv';
|
|
export const GO_URL = 'https://go.dev/';
|