Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:Giveth/giveth-dapps-v2 into fix_…
Browse files Browse the repository at this point in the history
…issue_4449_network_modal

Update Branch
  • Loading branch information
HrithikSampson committed Sep 12, 2024
2 parents 7d78930 + 9020bb9 commit db131da
Show file tree
Hide file tree
Showing 5 changed files with 288 additions and 208 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@tanstack/react-query": "^5.45.1",
"@vercel/speed-insights": "^1.0.9",
"@web3auth/sign-in-with-solana": "^3.0.0",
"@web3modal/wagmi": "^5.0.7",
"@web3modal/wagmi": "^5.1.7",
"apollo-upload-client": "^18.0.1",
"base58": "^2.0.1",
"bignumber.js": "^9.1.2",
Expand Down Expand Up @@ -72,7 +72,7 @@
"swiper": "^11.1.3",
"unsplash-js": "^7.0.19",
"viem": "^2.16.1",
"wagmi": "^2.11.3"
"wagmi": "^2.12.10"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
Expand Down
5 changes: 5 additions & 0 deletions src/components/GIVeconomyPages/GIVfarm.sc.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ export const PoolRow = styled(Row)`

export const ContractRow = styled(Flex)`
gap: 8px;
color: ${brandColors.cyan[500]};
cursor: pointer;
&:hover {
color: ${brandColors.cyan[300]};
}
`;

export const CopyWrapper = styled.div`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,13 @@ const RecurringDonationTable: FC<RecurringDonationTable> = ({
) : (
<DonationTableCell>
<B color={semanticColors.jade[500]}>
{limitFraction(
formatUnits(
BigInt(donation.flowRate) *
ONE_MONTH_SECONDS,
18,
{formatDonation(
limitFraction(
formatUnits(
BigInt(donation.flowRate) *
ONE_MONTH_SECONDS,
18,
),
),
)}
</B>
Expand Down
5 changes: 4 additions & 1 deletion src/wagmiConfigs.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { cookieStorage, createConfig, createStorage } from 'wagmi';
import { walletConnect, coinbaseWallet } from '@wagmi/connectors';
import { walletConnect, coinbaseWallet, safe } from '@wagmi/connectors';

import { createClient, http } from 'viem';
import configuration from './configuration';
Expand Down Expand Up @@ -28,6 +28,9 @@ export const wagmiConfig = createConfig({
metadata,
}),
coinbaseWallet({ appName: 'Giveth', version: '3' }),
safe({
allowedDomains: [/app.safe.global$/],
}),
],
ssr: true,
storage: createStorage({
Expand Down
Loading

0 comments on commit db131da

Please sign in to comment.