-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c2e6188
commit cfc8c2d
Showing
8 changed files
with
82 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,3 +26,14 @@ export const IS_DEV_ENVIRONMENT = | |
process.env.NEXT_PUBLIC_PROVIDER | ||
|
||
export const INVALID_NAME = '[Invalid ENS Name]' | ||
|
||
export const ENS_LINKS = { | ||
X: 'https://x.com/ensdomains', | ||
DISCORD: 'https://chat.ens.domains', | ||
MIRROR: 'https://ens.mirror.xyz', | ||
DISCOURSE: 'https://discuss.ens.domains', | ||
GITHUB: 'https://github.com/ensdomains', | ||
EMAIL: 'mailto:[email protected]', | ||
HOMEPAGE: 'https://ens.domains/', | ||
YOUTUBE: 'https://www.youtube.com/ensdomains', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,8 @@ import { | |
type CapsuleModalProps, | ||
} from '@usecapsule/rainbowkit-wallet' | ||
|
||
import { ENS_LINKS } from '../constants' | ||
|
||
const APP_NAME = 'ENS' | ||
const CAPSULE_ENV: Environment = Environment.BETA | ||
const CAPSULE_API_KEY = 'ea5557d8aed418b3c195f28c5a8dd3bb' | ||
|
@@ -23,10 +25,10 @@ const capsuleConstructorOpts: ConstructorOpts = { | |
// User Email Branding | ||
emailTheme: 'light' as any, | ||
emailPrimaryColor: '#5298FF', | ||
githubUrl: 'https://github.com/ensdomains', | ||
xUrl: 'https://twitter.com/ensdomains', | ||
homepageUrl: 'https://ens.domains/', | ||
supportUrl: 'mailto:[email protected]', | ||
githubUrl: ENS_LINKS.GITHUB, | ||
xUrl: ENS_LINKS.X, | ||
homepageUrl: ENS_LINKS.HOMEPAGE, | ||
supportUrl: ENS_LINKS.EMAIL, | ||
|
||
disableWorkers: true, | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters