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

chore: Add PSP token #52

Merged
merged 1 commit into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
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
40 changes: 40 additions & 0 deletions config/whitelist.json

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merge

Original file line number Diff line number Diff line change
Expand Up @@ -1441,6 +1441,46 @@
]
}
},
{
"tokenSymbol": "PSP",
"tokenName": "ParaSwap",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/PSP.svg",
"tokenAddresses": [
{
"address": "0xcafe001067cdef266afb7eb5a286dcfd277f3de5",
"chainId": "1"
},
{
"address": "0xcafe001067cdef266afb7eb5a286dcfd277f3de5",
"chainId": "56"
},
{
"address": "0xd3594e879b358f430e20f82bea61e83562d49d48",
"chainId": "137"
},
{
"address": "0x42d61d766b85431666b39b89c43011f24451bff6",
"chainId": "10"
}
],
"knownOwners": [
"0xb8313eaf73aed8fea1d9930df199b3c1bdb67b47",
"0x6df5e7b236a4f14e08c27e09202b4d1865905e9b"
],
"tags": [
"DEX"
],
"profileLinks": {
"siteUrl": "https://www.paraswap.io/",
"twitterUrl": "https://twitter.com/paraswap",
"telegramUrl": "https://t.me/paraswap",
"discordUrl": "https://discord.com/invite/bfnkPRPRXG",
"auditUrls": [
"https://skynet.certik.com/projects/paraswap",
"https://github.com/solidified-platform/audits/blob/master/Audit%20Report%20-%20ParaSwap%20%5B20.01.2021%5D.pdf"
]
}
},
{
"tokenSymbol": "USDC",
"tokenLogoUrl": "https://cryptologos.cc/logos/usd-coin-usdc-logo.png?v=024",
Expand Down
1 change: 1 addition & 0 deletions logos/PSP.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions src/constants/verifiedAssets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -763,6 +763,29 @@ const verifiedAssets: AddressMapping[] = [
],
},
},
{
tokenSymbol: 'PSP',
tokenName: 'ParaSwap',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/PSP.svg',
tokenAddresses: [
{ address: '0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5', chainId: '1' },
{ address: '0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5', chainId: '56' },
{ address: '0xd3594E879B358F430E20F82bea61e83562d49D48', chainId: '137' },
{ address: '0x42d61D766B85431666B39B89C43011f24451bFf6', chainId: '10' },
],
knownOwners: ['0xB8313Eaf73AED8fEa1D9930dF199B3c1Bdb67b47', '0x6DF5e7b236a4F14e08C27E09202B4d1865905e9b'],
tags: ['DEX'],
profileLinks: {
siteUrl: 'https://www.paraswap.io/',
twitterUrl: 'https://twitter.com/paraswap',
telegramUrl: 'https://t.me/paraswap',
discordUrl: 'https://discord.com/invite/bfnkPRPRXG',
auditUrls: [
'https://skynet.certik.com/projects/paraswap',
'https://github.com/solidified-platform/audits/blob/master/Audit%20Report%20-%20ParaSwap%20%5B20.01.2021%5D.pdf',
],
},
},
]

export default verifiedAssets