Skip to content

Commit

Permalink
chore: Add Tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
shivammp committed Oct 31, 2024
1 parent a2de6e4 commit 9acdd63
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 0 deletions.
37 changes: 37 additions & 0 deletions config/whitelist.json
Original file line number Diff line number Diff line change
Expand Up @@ -3512,6 +3512,43 @@
"telegramUrl": "https://t.me/TheBigRedTD"
}
},
{
"tokenSymbol": "TKN",
"tokenName": "Token Name Service",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/TKN.png",
"tokenAddresses": [
{
"address": "0x82d09e30d5d682d69b4a5d97c61b7ba651457625",
"chainId": "1"
},
{
"address": "0x78b3c724a2f663d11373c4a1978689271895256f",
"chainId": "8453"
}
],
"profileLinks": {
"siteUrl": "https://tkn.xyz/",
"twitterUrl": "https://x.com/TokenDao_",
"telegramUrl": "https://t.me/+z8V5aiSMx0tjMTIx"
}
},
{
"tokenSymbol": "TES",
"tokenName": "Titan Trading Token",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/TES.png",
"tokenAddresses": [
{
"address": "0x87e154e86fb691ab8a27116e93ed8d54e2b8c18c",
"chainId": "81457"
}
],
"profileLinks": {
"siteUrl": "https://titantrading.io/",
"twitterUrl": "https://x.com/TitanSmartTrade",
"telegramUrl": "https://t.me/titanboteng",
"discordUrl": "https://discord.com/invite/QPw3DJUY7W"
}
},
{
"tokenSymbol": "USDC",
"tokenLogoUrl": "https://cryptologos.cc/logos/usd-coin-usdc-logo.png?v=024",
Expand Down
Binary file added logos/TES.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/TKN.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions src/constants/verifiedAssets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2148,5 +2148,31 @@ const verifiedAssets: AddressMapping[] = [
telegramUrl: 'https://t.me/TheBigRedTD',
},
},
{
tokenSymbol: 'TKN',
tokenName: 'Token Name Service',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/TKN.png',
tokenAddresses: [
{ address: '0x82d09e30d5d682d69b4a5d97c61b7ba651457625', chainId: '1' },
{ address: '0x78b3c724a2f663d11373c4a1978689271895256f', chainId: '8453' },
],
profileLinks: {
siteUrl: 'https://tkn.xyz/',
twitterUrl: 'https://x.com/TokenDao_',
telegramUrl: 'https://t.me/+z8V5aiSMx0tjMTIx',
},
},
{
tokenSymbol: 'TES',
tokenName: 'Titan Trading Token',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/TES.png',
tokenAddresses: [{ address: '0x87e154e86fb691ab8a27116e93ed8d54e2b8c18c', chainId: '81457' }],
profileLinks: {
siteUrl: 'https://titantrading.io/',
twitterUrl: 'https://x.com/TitanSmartTrade',
telegramUrl: 'https://t.me/titanboteng',
discordUrl: 'https://discord.com/invite/QPw3DJUY7W',
},
},
]
export default verifiedAssets

0 comments on commit 9acdd63

Please sign in to comment.