Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: invalid decimal places for fUSDT and fUSDC on sepolia #1422

Merged
merged 2 commits into from
Jul 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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