chore: register domain
This commit is contained in:
23
src/constants.js
Normal file
23
src/constants.js
Normal file
@@ -0,0 +1,23 @@
|
||||
export const DEV_MODE = location.hostname === 'localhost';
|
||||
// export const DEV_MODE = false;
|
||||
|
||||
export const TLD = 'wallet';
|
||||
|
||||
export const HERO_TEXT = 'Own your .wallet';
|
||||
export const SUB_TEXT = 'Decentralized domains for websites, wallets and web3';
|
||||
export const SEARCH_PLACEHOLDER = 'Find your .wallet';
|
||||
export const PAGE_TITLE = HERO_TEXT;
|
||||
|
||||
export const TWITTER_HANDLE = 'walletdomain';
|
||||
|
||||
// Check https://cloud.walletconnect.com/
|
||||
export const WALLET_CONNECT_APP_NAME = 'Wallet.id';
|
||||
export const WALLET_CONNECT_PROJECT_ID = 'b29f96b2f68f4ce904f96b3c225845c3';
|
||||
|
||||
export const STATUS_CONTRACT_ADDR = DEV_MODE
|
||||
? '0x075489a52BcF5cd91c589046C3F5807e7fFC3647'
|
||||
: '0xa89356391fB34e18360E79102536daD46F4a4199';
|
||||
|
||||
export const REGISTER_CONTRACT_ADDR = DEV_MODE
|
||||
? '0x529B2b5B576c27769Ae0aB811F1655012f756C00'
|
||||
: '0xfda87CC032cD641ac192027353e5B25261dfe6b3';
|
||||
Reference in New Issue
Block a user