Skip to content

Commit

Permalink
fix extra spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
0xMillz committed Oct 14, 2024
1 parent 79ffc28 commit 258e533
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions apps/web/.env.local.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ ETHERSCAN_API_KEY=
NEXT_PUBLIC_ALCHEMY_ID=
PRIVATE_REDIS_CONNECTION_URI=
NEXT_PUBLIC_ZORA_API_KEY=
NEXT_PUBLIC_TENDERLY_RPC_KEY=
4 changes: 2 additions & 2 deletions apps/web/src/constants/rpc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { foundry } from 'wagmi/chains'
import { CHAIN_ID } from 'src/typings'

export const RPC_URL = {
[CHAIN_ID.ETHEREUM]: ` https://mainnet.gateway.tenderly.co/${process.env.NEXT_PUBLIC_TENDERLY_RPC_KEY}`,
[CHAIN_ID.ETHEREUM]: `https://mainnet.gateway.tenderly.co/${process.env.NEXT_PUBLIC_TENDERLY_RPC_KEY}`,
[CHAIN_ID.OPTIMISM]: `https://optimism.gateway.tenderly.co/${process.env.NEXT_PUBLIC_TENDERLY_RPC_KEY}`,
[CHAIN_ID.SEPOLIA]: ` https://sepolia.gateway.tenderly.co/${process.env.NEXT_PUBLIC_TENDERLY_RPC_KEY}`,
[CHAIN_ID.SEPOLIA]: `https://sepolia.gateway.tenderly.co/${process.env.NEXT_PUBLIC_TENDERLY_RPC_KEY}`,
[CHAIN_ID.OPTIMISM_SEPOLIA]: `https://optimism-sepolia.gateway.tenderly.co/${process.env.NEXT_PUBLIC_TENDERLY_RPC_KEY}`,
[CHAIN_ID.BASE]: `https://base.gateway.tenderly.co/${process.env.NEXT_PUBLIC_TENDERLY_RPC_KEY}`,
[CHAIN_ID.BASE_SEPOLIA]: `https://base-sepolia.gateway.tenderly.co/${process.env.NEXT_PUBLIC_TENDERLY_RPC_KEY}`,
Expand Down

0 comments on commit 258e533

Please sign in to comment.