-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #153 from P4-Games/build/externalize-explorer-urls
merge feature/externalize-explorer-urls into develop
- Loading branch information
Showing
8 changed files
with
31 additions
and
12 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
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 |
---|---|---|
|
@@ -36,6 +36,12 @@ export const USE_MOCK = (process.env.NEXT_PUBLIC_USE_MOCK || 'true') === 'true' | |
export const ALLOWED_ORIGINS = process.env.NEXT_PUBLIC_ALLOWED_ORIGINS || '*' | ||
export const fromICP = (process.env.NEXT_PUBLIC_FROM_ICP || 'true') === 'true' | ||
export const RECAPTCHA_SITE_KEY = process.env.NEXT_PUBLIC_RECAPTCHA_SITE_KEY || '' | ||
export const EXPLORER_L1_URL: string = | ||
process.env.NEXT_PUBLIC_EXPLORER_L1_URL || 'https://sepolia.etherscan.io' | ||
export const EXPLORER_L2_URL: string = | ||
process.env.NEXT_PUBLIC_EXPLORER_L2_URL || 'https://sepolia.arbiscan.io/' | ||
export const EXPLORER_NFT_URL: string = | ||
process.env.NEXT_PUBLIC_EXPLORER_NFT_URL || 'https://sepolia.arbiscan.io' | ||
export const NFT_IMAGE_REPOSITORY = ( | ||
process.env.NEXT_PUBLIC_NFT_IMAGE_REPOSITORY || 'gcp' | ||
).toLowerCase() | ||
|
@@ -46,16 +52,11 @@ export const PATH_AFTER_LOGIN = `/dashboard` | |
export const BOT_WAPP_URL = | ||
'https://api.whatsapp.com/send/?phone=5491164629653&text=MESSAGE&type=phone_number&app_absent=0' | ||
|
||
export const EXPLORER_L1 = 'https://sepolia.etherscan.io' | ||
export const EXPLORER_L2 = 'https://l1sload-blockscout.scroll.io' // Scroll devnet Explorer | ||
export const NFT_TRX_EXPLORER = 'https://sepolia.arbiscan.io' | ||
|
||
export const NFT_MARKETPLACE_URL = | ||
process.env.NEXT_PUBLIC_NFT_MARKETPLACE_URL || | ||
'https://testnets.opensea.io/assets/arbitrum_sepolia' | ||
|
||
export const NFT_SHARE = 'https://api.whatsapp.com/send/?text=MESSAGE' | ||
|
||
export const STORAGE_KEY_TOKEN = 'accessToken' | ||
export const STORAGE_KEY_SETTINGS = 'settings' | ||
export const CONTACT_EMAIL = '[email protected]' | ||
|
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