Skip to content

Commit

Permalink
Merge pull request #417 from picsoritdidnthappen/database-staging
Browse files Browse the repository at this point in the history
updating DEGEN RPCs + font fix on join bounty
  • Loading branch information
picsoritdidnthappen authored Dec 10, 2024
2 parents 474b3c1 + d8457e9 commit 17f02c7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions src/components/global/FormJoinBounty.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,11 @@ export default function FormJoinBounty({
alignItems='left'
width='100%'
>
<Typography variant='subtitle1' gutterBottom>
<Typography
variant='subtitle1'
gutterBottom
className='font-family-geist'
>
Reward
</Typography>
<input
Expand All @@ -125,7 +129,7 @@ export default function FormJoinBounty({
<Button
variant='outlined'
className={cn(
'w-full rounded-full lowercase bg-[#F15E5F] hover:bg-red-400 text-white',
'w-full rounded-full lowercase bg-[#F15E5F] hover:bg-red-400 text-white font-family-geist',
!amount && 'opacity-50 cursor-not-allowed'
)}
disabled={!amount}
Expand Down
4 changes: 4 additions & 0 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,10 @@ button {
backdrop-filter: blur(4px);
}

.font-family-geist {
font-family: 'GeistMono-Regular';
}

.bountyItem.pendingClaims > div > div.borderBox {
border: 1px solid #cf5d5d;
}
Expand Down
2 changes: 1 addition & 1 deletion src/utils/publicClients.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const basePublicClient = createPublicClient({
export const degenPublicClient = createPublicClient({
chain: degen,
transport: http(
'https://rpc-degen-mainnet-1.t.conduit.xyz/8TM2tJu2NV9h6McqXqDPHCnsvCdwVgyrH'
'https://degen-mainnet.g.alchemy.com/v2/u14hNDLOC4WItmevbcUWItEg6KThN5W0'
),
});

Expand Down
2 changes: 1 addition & 1 deletion src/wagmiConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { http } from 'viem';
import { arbitrum, base, degen } from 'wagmi/chains';

const DEGEN_RPC_URL =
'https://rpc-degen-mainnet-1.t.conduit.xyz/8TM2tJu2NV9h6McqXqDPHCnsvCdwVgyrH';
'https://degen-mainnet.g.alchemy.com/v2/u14hNDLOC4WItmevbcUWItEg6KThN5W0';
const ARBITRUM_RPC_URL =
'https://arb-mainnet.g.alchemy.com/v2/XCJ_kTDkVWrwvQ8vbOOXNxKvKyN30Lu1';
const BASE_RPC_URL =
Expand Down

0 comments on commit 17f02c7

Please sign in to comment.