Skip to content

Commit

Permalink
feat: add wrapped euroe address (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
moritzkirstein committed Mar 7, 2024
1 parent 7809ce8 commit ca96597
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/@utils/subgraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ const OpcsApprovedTokensQuery = gql`
export const tokenAddressesEUROe = {
100: '0xe974c4894996e012399dedbda0be7314a73bbff1',
137: '0x820802Fa8a99901F52e39acD21177b0BE6EE2974',
32456: '0x8A4826071983655805bF4f29828577Cd6b1aC0cB',
80001: '0xA089a21902914C3f3325dBE2334E9B466071E5f1'
}

Expand Down Expand Up @@ -187,7 +188,8 @@ export async function getOpcsApprovedTokens(
...approvedTokens,
{
address: tokenAddressesEUROe[chainId],
decimals: 6,
// TODO: revert once decimals changed to 6 on pontus-x
decimals: chainId === 32456 ? 18 : 6,
name: 'EUROe',
symbol: 'EUROe'
}
Expand Down

0 comments on commit ca96597

Please sign in to comment.