Skip to content

Commit

Permalink
fix: invalid decimal places for fUSDT and fUSDC on sepolia (#1422)
Browse files Browse the repository at this point in the history
Co-authored-by: MantisClone <[email protected]>
  • Loading branch information
Envoy-VC and MantisClone authored Jul 1, 2024
1 parent a9ce591 commit 40b7c37
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/currency/src/erc20/chains/sepolia.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
import { CurrencyTypes } from '@requestnetwork/types';

// List of the supported goerli ERC20 tokens
// List of the supported sepolia ERC20 tokens
export const supportedSepoliaERC20: CurrencyTypes.TokenMap = {
// Faucet Token on goerli network.
// Faucet Token on sepolia network.
'0x370DE27fdb7D1Ff1e1BaA7D11c5820a324Cf623C': {
decimals: 18,
name: 'FaucetToken',
symbol: 'FAU',
},
'0xF046b3CA5ae2879c6bAcC4D42fAF363eE8379F78': {
decimals: 18,
decimals: 6,
name: 'FakeUSDT',
symbol: 'fUSDT',
},
'0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238': {
decimals: 18,
decimals: 6,
name: 'FakeUSDC',
symbol: 'fUSDC',
},
Expand Down

0 comments on commit 40b7c37

Please sign in to comment.