Skip to content

Commit

Permalink
fix: changed infura key
Browse files Browse the repository at this point in the history
  • Loading branch information
mishramonalisha76 committed Oct 11, 2024
1 parent 7aed3b0 commit db6f235
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { CONSTANTS } from '@pushprotocol/restapi';
import { ethers } from 'ethers';
import { CiImageOn } from 'react-icons/ci';
import { FaFile } from 'react-icons/fa';
import { CoreContractChainId, InfuraAPIKey } from '../../../config';
import { pushBotAddress } from '../../../config/constants';
import { pCAIP10ToWallet, resolveWeb3Name, shortenText } from '../../../helpers';
import { createBlockie } from '../../../helpers/blockies';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import { ProfileContainer } from '../reusables';
import { GroupInfoModal } from './ChatProfileInfoModal';

// Internal Configs
import { CoreContractChainId, InfuraAPIKey, allowedNetworks, device } from '../../../config';
import { device } from '../../../config';
import { ThemeContext } from '../theme/ThemeProvider';

// Assets
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { ProfileContainer } from '../reusables';
import { ThemeContext } from '../theme/ThemeProvider';
import { UpdateUserProfileModal } from './UpdateUserProfileModal';

import { Constants, CoreContractChainId, InfuraAPIKey, ProfilePicture, device } from '../../../config';
import { device } from '../../../config';
import VerticalEllipsisIcon from '../../../icons/VerticalEllipsis.svg';
import UserProfileIcon from '../../../icons/userCircleGear.svg';
import { MODAL_BACKGROUND_TYPE, MODAL_POSITION_TYPE } from '../../../types';
Expand All @@ -33,7 +33,7 @@ export const UserProfile: React.FC<UserProfileProps> = ({
updateUserProfileModalBackground = MODAL_BACKGROUND_TYPE.OVERLAY,
updateUserProfileModalPositionType = MODAL_POSITION_TYPE.GLOBAL,
onUserProfileUpdateModalOpen,
closeUserProfileModalOnClickAway = false
closeUserProfileModalOnClickAway = false,
}) => {
const { user } = useChatData();
const [userProfile, setUserProfile] = useState<IUser>();
Expand Down Expand Up @@ -157,7 +157,7 @@ export const UserProfile: React.FC<UserProfileProps> = ({
};

//styles
const Conatiner = styled(Section) <IThemeProps>`
const Conatiner = styled(Section)<IThemeProps>`
border: ${(props) => props.theme.border?.userProfile};
box-sizing: border-box;
`;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
import { InfuraAPIKey } from '../../../../config';
import { infuraAPIKey } from '../../../../config';

const getInfuraUrlFor = (network: string, key: string) =>
`https://${network}.infura.io/v3/${key}`;
const getInfuraUrlFor = (network: string, key: string) => `https://${network}.infura.io/v3/${key}`;

const getRpcURL = (network: string, key: string) => {
return getInfuraUrlFor(network, key);
};

export const getChainRPC = (chainId: number): string => {
const key = InfuraAPIKey;
const key = infuraAPIKey;

switch (chainId) {
case 1:
Expand Down
4 changes: 2 additions & 2 deletions packages/uiweb/src/lib/components/supportChat/AddressInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ethers } from 'ethers';
import { ChatProps } from './Chat';

import { SupportChatPropsContext } from '../../context';
import { Constants, ENV, InfuraAPIKey, allowedNetworks } from '../../config';
import { Constants, infuraAPIKey, allowedNetworks } from '../../config';

import { copyToClipboard, pCAIP10ToWallet, resolveWeb3Name } from '../../helpers';
import { CopySvg } from '../../icons/CopySvg';
Expand All @@ -19,7 +19,7 @@ export const AddressInfo: React.FC = () => {
const [isCopied, setIsCopied] = useState<boolean>(false);
const walletAddress = pCAIP10ToWallet(supportAddress!);
const l1ChainId = allowedNetworks[env!]?.includes(1) ? 1 : 5;
const provider = new ethers.providers.InfuraProvider(l1ChainId, InfuraAPIKey);
const provider = new ethers.providers.InfuraProvider(l1ChainId, infuraAPIKey);

useEffect(() => {
const getUser = async () => {
Expand Down
2 changes: 0 additions & 2 deletions packages/uiweb/src/lib/config/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,6 @@ export const allowedNetworks = {

export const BLOCKNATIVE_PROJECT_ID = '64a44a0fb537407bfe97d24330e4109c';

export const InfuraAPIKey = '150f25623ae64d08ab7ec7dd0c6b6ee9';

export const PUBLIC_GOOGLE_TOKEN = 'AIzaSyBhUBnCia6zpxY7KcqjghRS1IphinAvKXs';

export const ProfilePicture = `data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAvklEQVR4AcXBsW2FMBiF0Y8r3GQb6jeBxRauYRpo4yGQkMd4A7kg7Z/GUfSKe8703fKDkTATZsJsrr0RlZSJ9r4RLayMvLmJjnQS1d6IhJkwE2bT13U/DBzp5BN73xgRZsJMmM1HOolqb/yWiWpvjJSUiRZWopIykTATZsJs5g+1N6KSMiO1N/5DmAkzYTa9Lh6MhJkwE2ZzSZlo7xvRwson3txERzqJhJkwE2bT6+JhoKTMJ2pvjAgzYSbMfgDlXixqjH6gRgAAAABJRU5ErkJggg==`;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import coinbaseWalletModule from '@web3-onboard/coinbase';

import { BLOCKNATIVE_PROJECT_ID, InfuraAPIKey } from '../config';
import { BLOCKNATIVE_PROJECT_ID, infuraAPIKey } from '../config';
import { Web3OnboardProvider } from '@web3-onboard/react';
import injectedModule, { ProviderLabel } from '@web3-onboard/injected-wallets';
import walletConnectModule from '@web3-onboard/walletconnect';
Expand Down Expand Up @@ -30,13 +30,13 @@ const CHAINS: ChainType[] = [
id: '0x1',
token: 'ETH',
label: 'Ethereum Mainnet',
rpcUrl: `https://mainnet.infura.io/v3/${InfuraAPIKey}`,
rpcUrl: `https://mainnet.infura.io/v3/${infuraAPIKey}`,
},
{
id: '0xAA36A7',
token: 'ETH',
label: 'Sepolia',
rpcUrl: `https://sepolia.infura.io/v3/${InfuraAPIKey}`,
rpcUrl: `https://sepolia.infura.io/v3/${infuraAPIKey}`,
},
{
id: '0x13882',
Expand Down
6 changes: 3 additions & 3 deletions packages/uiweb/src/lib/helpers/udResolver.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Env } from '@pushprotocol/restapi';
import Resolution from '@unstoppabledomains/resolution';
import { ethers } from 'ethers';
import { allowedNetworks, InfuraAPIKey, NETWORK_DETAILS } from '../config';
import { allowedNetworks, infuraAPIKey, NETWORK_DETAILS } from '../config';

export const getUdResolverClient = (env: Env): Resolution | undefined => {
try {
Expand All @@ -14,11 +14,11 @@ export const getUdResolverClient = (env: Env): Resolution | undefined => {
locations: {
Layer1: {
network: 'mainnet', // add config for sepolia once it's supported by UD
provider: new ethers.providers.InfuraProvider(l1ChainId, InfuraAPIKey),
provider: new ethers.providers.InfuraProvider(l1ChainId, infuraAPIKey),
},
Layer2: {
network: NETWORK_DETAILS[l2ChainId].network,
provider: new ethers.providers.InfuraProvider(l2ChainId, InfuraAPIKey),
provider: new ethers.providers.InfuraProvider(l2ChainId, infuraAPIKey),
},
},
},
Expand Down

0 comments on commit db6f235

Please sign in to comment.