Merge pull request #9 from nostrband/develop
Change relay to .env variable
This commit is contained in:
commit
8faccc383b
3
.env
3
.env
@ -3,4 +3,5 @@
|
||||
REACT_APP_WEB_PUSH_PUBKEY=BNW_39YcKbV4KunFxFhvMW5JUs8AljfFnGUeZpaerO-gwCoWyQat5ol0xOGB8MLaqqCbz0iptd2Qv3SToSGynMk
|
||||
#REACT_APP_NOAUTHD_URL=http://localhost:8000
|
||||
REACT_APP_NOAUTHD_URL=https://noauthd.nsec.app
|
||||
REACT_APP_DOMAIN=nsec.app
|
||||
REACT_APP_DOMAIN=nsec.app
|
||||
REACT_APP_RELAY=wss://relay.nsec.app
|
@ -4,6 +4,7 @@ import { StyledAppLogo, StyledContent } from './styled'
|
||||
import { Button } from '@/shared/Button/Button'
|
||||
import { ChangeEvent, useState } from 'react'
|
||||
import { CheckmarkIcon } from '@/assets'
|
||||
import { DOMAIN } from '@/utils/consts'
|
||||
|
||||
const AuthPage = () => {
|
||||
const isMobile = useMediaQuery('(max-width:600px)')
|
||||
@ -34,7 +35,7 @@ const AuthPage = () => {
|
||||
placeholder='Username'
|
||||
helperText={inputHelperText}
|
||||
endAdornment={
|
||||
<Typography color={'#FFFFFFA8'}>@nsec.app</Typography>
|
||||
<Typography color={'#FFFFFFA8'}>@{DOMAIN}</Typography>
|
||||
}
|
||||
onChange={handleInputChange}
|
||||
value={enteredValue}
|
||||
|
@ -2,12 +2,14 @@ import { useCallback, useEffect, useState } from 'react'
|
||||
import { fetchProfile } from '@/modules/nostr'
|
||||
import { MetaEvent } from '@/types/meta-event'
|
||||
import { getProfileUsername } from '@/utils/helpers/helpers'
|
||||
import { DOMAIN } from '@/utils/consts'
|
||||
|
||||
export const useProfile = (npub: string) => {
|
||||
const [profile, setProfile] = useState<MetaEvent | null>(null)
|
||||
|
||||
const userName = getProfileUsername(profile, npub)
|
||||
const userNameWithPrefix = userName + '@nsec.app'
|
||||
// FIXME use nip05?
|
||||
const userNameWithPrefix = userName + '@' + DOMAIN
|
||||
|
||||
const loadProfile = useCallback(async () => {
|
||||
try {
|
||||
|
@ -1,7 +1,8 @@
|
||||
export const NIP46_RELAYS = ['wss://relay.login.nostrapps.org']
|
||||
export const NOAUTHD_URL = process.env.REACT_APP_NOAUTHD_URL
|
||||
export const WEB_PUSH_PUBKEY = process.env.REACT_APP_WEB_PUSH_PUBKEY
|
||||
export const DOMAIN = process.env.REACT_APP_DOMAIN
|
||||
export const RELAY = process.env.REACT_APP_RELAY || 'wss://relay.nsec.app'
|
||||
export const NIP46_RELAYS = [RELAY]
|
||||
|
||||
export const MIN_POW = 14
|
||||
export const MAX_POW = 19
|
||||
|
Loading…
x
Reference in New Issue
Block a user