Skip to content

Commit

Permalink
fix: map localusdc to usdc (#2026)
Browse files Browse the repository at this point in the history
  • Loading branch information
JP authored Mar 19, 2024
1 parent d7dc866 commit c7a6842
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions centrifuge-js/src/modules/pools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2898,8 +2898,8 @@ export function getPoolsModule(inst: Centrifuge) {
const currency: CurrencyMetadata = {
key,
decimals: value.decimals,
name: value.name,
symbol: value.symbol,
name: value.symbol === 'localUSDC' ? 'USDC' : value.name,
symbol: value.symbol === 'localUSDC' ? 'USDC' : value.symbol,
isPoolCurrency: value.additional.poolCurrency,
isPermissioned: value.additional.permissioned,
additional: value.additional,
Expand Down

0 comments on commit c7a6842

Please sign in to comment.