Skip to content

Commit

Permalink
feat: fix widget configurator build, but var still required
Browse files Browse the repository at this point in the history
  • Loading branch information
alfetopito committed Oct 25, 2024
1 parent 3acb1b4 commit 84827e2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/widget-configurator/src/app/configurator/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ import { TokenListItem } from './types'
const GNOSIS_DEFAULT_PARTNER_FEE_RECIPIENT = '0x6b3214fd11dc91de14718dee98ef59bcbfcfb432'
const MAINNET_DEFAULT_PARTNER_FEE_RECIPIENT = '0xB64963f95215FDe6510657e719bd832BB8bb941B'
const ARB1_DEFAULT_PARTNER_FEE_RECIPIENT = '0x451100Ffc88884bde4ce87adC8bB6c7Df7fACccd'
const BASE_DEFAULT_PARTNER_FEE_RECIPIENT = '' // TODO: add fee recipient
export const DEFAULT_PARTNER_FEE_RECIPIENT_PER_NETWORK: Record<SupportedChainId, string> = {
[SupportedChainId.MAINNET]: MAINNET_DEFAULT_PARTNER_FEE_RECIPIENT,
[SupportedChainId.GNOSIS_CHAIN]: GNOSIS_DEFAULT_PARTNER_FEE_RECIPIENT,
[SupportedChainId.ARBITRUM_ONE]: ARB1_DEFAULT_PARTNER_FEE_RECIPIENT,
[SupportedChainId.BASE]: BASE_DEFAULT_PARTNER_FEE_RECIPIENT,
[SupportedChainId.SEPOLIA]: MAINNET_DEFAULT_PARTNER_FEE_RECIPIENT,
}

Expand Down

0 comments on commit 84827e2

Please sign in to comment.