Skip to content

Commit

Permalink
chore: Add CGV and GRAPE tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
efeDaniels committed Feb 27, 2024
1 parent 23b7d4a commit bee0baf
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 3 deletions.
40 changes: 40 additions & 0 deletions config/whitelist.json
Original file line number Diff line number Diff line change
Expand Up @@ -1861,6 +1861,46 @@
"telegramUrl": "https://t.me/+1vgltKEIVHczNjI8"
}
},
{
"tokenSymbol": "CGV",
"tokenName": "Cogito",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/CGV.svg",
"tokenAddresses": [
{
"address": "0xaef420fd77477d9dc8b46d704d44dd09d6c27866",
"chainId": "1"
},
{
"address": "0x1bdaf9ddd7658d8049391971d1fd48c0484f66ec",
"chainId": "56"
}
],
"profileLinks": {
"siteUrl": "https://www.cogito.finance/",
"twitterUrl": "https://twitter.com/CogitoProtocol",
"discordUrl": "https://discord.com/invite/8xMJeGQayG",
"telegramUrl": "https://t.me/joincogito"
}
},
{
"tokenSymbol": "GRAPE",
"tokenName": "Grape Coin",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/GRAPE.png",
"tokenAddresses": [
{
"address": "0x555296de6a86e72752e5c5dc091fe49713aa145c",
"chainId": "56"
}
],
"tags": [
"NFTs"
],
"profileLinks": {
"siteUrl": "https://www.joingrapes.com/",
"twitterUrl": "https://twitter.com/JoinGrapes",
"discordUrl": "https://discord.com/invite/joingrapes"
}
},
{
"tokenSymbol": "USDC",
"tokenLogoUrl": "https://cryptologos.cc/logos/usd-coin-usdc-logo.png?v=024",
Expand Down
1 change: 1 addition & 0 deletions logos/CGV.svg
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/GRAPE.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 28 additions & 3 deletions src/constants/verifiedAssets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1025,9 +1025,7 @@ const verifiedAssets: AddressMapping[] = [
tokenSymbol: 'FBX',
tokenName: 'Firebot Token',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/FBX.png',
tokenAddresses: [
{ address: '0xD125443F38A69d776177c2B9c041f462936F8218', chainId: '137' },
],
tokenAddresses: [{ address: '0xD125443F38A69d776177c2B9c041f462936F8218', chainId: '137' }],
tags: ['AI'],
profileLinks: {
siteUrl: 'https://firebot.gg/',
Expand All @@ -1036,6 +1034,33 @@ const verifiedAssets: AddressMapping[] = [
telegramUrl: 'https://t.me/+1vgltKEIVHczNjI8',
},
},
{
tokenSymbol: 'CGV',
tokenName: 'Cogito',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/CGV.svg',
tokenAddresses: [
{ address: '0xaef420fd77477d9dc8b46d704d44dd09d6c27866', chainId: '1' },
{ address: '0x1bdaf9ddd7658d8049391971d1fd48c0484f66ec', chainId: '56' },
],
profileLinks: {
siteUrl: 'https://www.cogito.finance/',
twitterUrl: 'https://twitter.com/CogitoProtocol',
discordUrl: 'https://discord.com/invite/8xMJeGQayG',
telegramUrl: 'https://t.me/joincogito',
},
},
{
tokenSymbol: 'GRAPE',
tokenName: 'Grape Coin',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/GRAPE.png',
tokenAddresses: [{ address: '0x555296de6A86E72752e5C5DC091FE49713Aa145C', chainId: '56' }],
tags: ['NFTs'],
profileLinks: {
siteUrl: 'https://www.joingrapes.com/',
twitterUrl: 'https://twitter.com/JoinGrapes',
discordUrl: 'https://discord.com/invite/joingrapes',
},
},
]

export default verifiedAssets

0 comments on commit bee0baf

Please sign in to comment.