Skip to content

Commit

Permalink
Merge pull request #84 from ApeSwapFinance/staging
Browse files Browse the repository at this point in the history
chore: Adding Tokens to LHD
  • Loading branch information
efeDaniels authored May 21, 2024
2 parents 3846aaf + f3ad075 commit 192b36b
Show file tree
Hide file tree
Showing 6 changed files with 110 additions and 0 deletions.
65 changes: 65 additions & 0 deletions config/whitelist.json
Original file line number Diff line number Diff line change
Expand Up @@ -2359,6 +2359,71 @@
"telegramUrl": "https://t.me/farmsent"
}
},
{
"tokenSymbol": "CERE",
"tokenName": "Cere Network",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/CERE.png",
"tokenAddresses": [
{
"address": "0x2da719db753dfa10a62e140f436e1d67f2ddb0d6",
"chainId": "1"
}
],
"profileLinks": {
"siteUrl": "https://www.cere.network/",
"twitterUrl": "https://x.com/cereofficial",
"telegramUrl": "https://t.me/thisiscere",
"discordUrl": "https://discord.com/invite/cYVKUYHWhp"
}
},
{
"tokenSymbol": "GDT",
"tokenName": "Gradient Protocol",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/GDT.png",
"tokenAddresses": [
{
"address": "0x396c95abe154b3b2ed204cf45c8726aa7ad47a4d",
"chainId": "1"
}
],
"profileLinks": {
"siteUrl": "https://gradientprotocol.io/",
"twitterUrl": "https://x.com/Gradient_GDT",
"telegramUrl": "https://t.me/Gradient_Entry"
}
},
{
"tokenSymbol": "HAIPERAI",
"tokenName": "HaiperAI",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/HAIPERAI.png",
"tokenAddresses": [
{
"address": "0x1317d2a56520e64bfe3c2ecd89b6a8b3fb1d6a08",
"chainId": "1"
}
],
"profileLinks": {
"siteUrl": "https://haiperai.me/",
"twitterUrl": "https://x.com/Haiper_ai_",
"telegramUrl": "https://t.me/HaiperAIChat"
}
},
{
"tokenSymbol": "EGO",
"tokenName": "Paysenger EGO",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/EGO.png",
"tokenAddresses": [
{
"address": "0x44a21b3577924dcd2e9c81a3347d204c36a55466",
"chainId": "56"
}
],
"profileLinks": {
"siteUrl": "https://egoco.in/",
"twitterUrl": "https://x.com/Ego_Paysenger",
"telegramUrl": "https://t.me/ego_paysenger_en"
}
},
{
"tokenSymbol": "USDC",
"tokenLogoUrl": "https://cryptologos.cc/logos/usd-coin-usdc-logo.png?v=024",
Expand Down
Binary file added logos/CERE.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added logos/EGO.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added logos/GDT.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added logos/HAIPERAI.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions src/constants/verifiedAssets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1372,5 +1372,50 @@ const verifiedAssets: AddressMapping[] = [
telegramUrl: 'https://t.me/farmsent',
},
},
{
tokenSymbol: 'CERE',
tokenName: 'Cere Network',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/CERE.png',
tokenAddresses: [{ address: '0x2da719db753dfa10a62e140f436e1d67f2ddb0d6', chainId: '1' }],
profileLinks: {
siteUrl: 'https://www.cere.network/',
twitterUrl: 'https://x.com/cereofficial',
telegramUrl: 'https://t.me/thisiscere',
discordUrl: 'https://discord.com/invite/cYVKUYHWhp'
},
},
{
tokenSymbol: 'GDT',
tokenName: 'Gradient Protocol',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/GDT.png',
tokenAddresses: [{ address: '0x396c95abe154b3b2ed204cf45c8726aa7ad47a4d', chainId: '1' }],
profileLinks: {
siteUrl: 'https://gradientprotocol.io/',
twitterUrl: 'https://x.com/Gradient_GDT',
telegramUrl: 'https://t.me/Gradient_Entry',
},
},
{
tokenSymbol: 'HAIPERAI',
tokenName: 'HaiperAI',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/HAIPERAI.png',
tokenAddresses: [{ address: '0x1317d2a56520e64bfe3c2ecd89b6a8b3fb1d6a08', chainId: '1' }],
profileLinks: {
siteUrl: 'https://haiperai.me/',
twitterUrl: 'https://x.com/Haiper_ai_',
telegramUrl: 'https://t.me/HaiperAIChat',
},
},
{
tokenSymbol: 'EGO',
tokenName: 'Paysenger EGO',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/EGO.png',
tokenAddresses: [{ address: '0x44a21B3577924DCD2e9C81A3347D204C36a55466', chainId: '56' }],
profileLinks: {
siteUrl: 'https://egoco.in/',
twitterUrl: 'https://x.com/Ego_Paysenger',
telegramUrl: 'https://t.me/ego_paysenger_en',
},
},
]
export default verifiedAssets

0 comments on commit 192b36b

Please sign in to comment.