Skip to content

Commit

Permalink
Merge pull request #4866 from Giveth/disable_usdc_recurring
Browse files Browse the repository at this point in the history
Disable USDC on recurring donation
  • Loading branch information
kkatusic authored Nov 11, 2024
2 parents a52b987 + cf32f76 commit 7c3e93d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
30 changes: 15 additions & 15 deletions src/config/production.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -522,21 +522,21 @@ const config: EnvConfig = {
isSuperToken: true,
coingeckoId: 'dai',
},
{
underlyingToken: {
decimals: 6,
id: '0x7f5c764cbc14f9669b88837ca1490cca17c31607',
name: 'USD Coin',
symbol: 'USDC',
coingeckoId: 'usd-coin',
},
decimals: 18,
id: '0x8430f084b939208e2eded1584889c9a66b90562f',
name: 'Super USD Coin',
symbol: 'USDCx',
isSuperToken: true,
coingeckoId: 'usd-coin',
},
// {
// underlyingToken: {
// decimals: 6,
// id: '0x7f5c764cbc14f9669b88837ca1490cca17c31607',
// name: 'USD Coin',
// symbol: 'USDC',
// coingeckoId: 'usd-coin',
// },
// decimals: 18,
// id: '0x8430f084b939208e2eded1584889c9a66b90562f',
// name: 'Super USD Coin',
// symbol: 'USDCx',
// isSuperToken: true,
// coingeckoId: 'usd-coin',
// },
{
underlyingToken: {
decimals: 18,
Expand Down

0 comments on commit 7c3e93d

Please sign in to comment.