Skip to content

Commit

Permalink
Enable USDC.axl Nabla prototype for Pendulum
Browse files Browse the repository at this point in the history
  • Loading branch information
TorstenStueber committed Jul 3, 2024
1 parent 8b202fa commit d2cf278
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/components/Layout/links.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export const links: Links = ({ tenantName }) => [
title: 'Forex AMM',
hidden:
(nablaConfig.environment && !nablaConfig.environment.includes(config.env)) ||
!tenantName ||
(tenantName && !nablaConfig.tenants.includes(tenantName)),
prefix: <NablaIcon />,
props: {
Expand Down
9 changes: 7 additions & 2 deletions src/config/apps/nabla.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,16 @@ export type NablaConfig = AppConfigBase &
>;

export const nablaConfig: NablaConfig = {
tenants: [TenantName.Foucoco],
environment: ['staging', 'development'],
tenants: [TenantName.Foucoco, TenantName.Pendulum],
environment: ['staging', 'development', 'production'],
foucoco: {
indexerUrl: 'https://pendulum.squids.live/foucoco-squid/graphql',
router: '6h54SUQjbXjYbYT7p7vDcXSVGAQNgu78jkhErLJoW7EXo3ry',
oracle: '6nT6THovpSsTtCCi9Lae1NoAAviLbzULaEo41Yg5eYJrCZXu',
},
pendulum: {
indexerUrl: 'https://pendulum.squids.live/pendulum-squid/graphql',
router: '6dQQoUKQ9LNDCrGMjoZjeHBXsuihSgQiQEgD9Z7VtHR82wfG',
oracle: '6eFMEXfr5cebufroDDPnJrawkuoDeqYwxtwn3vKaKLNjM31W',
},
};

0 comments on commit d2cf278

Please sign in to comment.