Skip to content

Commit

Permalink
chore: Add O4DX - TX20 And RTF Token
Browse files Browse the repository at this point in the history
  • Loading branch information
shivammp committed May 6, 2024
1 parent 84b1e60 commit 0c137e7
Show file tree
Hide file tree
Showing 5 changed files with 88 additions and 1 deletion.
52 changes: 52 additions & 0 deletions config/whitelist.json
Original file line number Diff line number Diff line change
Expand Up @@ -2201,6 +2201,58 @@
"discordUrl": "https://discord.com/invite/G3vWy8cbnK"
}
},
{
"tokenSymbol": "O4DX",
"tokenName": "OrangeDX",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/O4DX.png",
"tokenAddresses": [
{
"address": "0x062ca2d2f1af8c203fa3ad5298fd6faa4e44e897",
"chainId": "56"
}
],
"profileLinks": {
"siteUrl": "https://orangedx.com/",
"twitterUrl": "https://twitter.com/OrangDx_BRC20",
"telegramUrl": "https://t.me/Orangedx_Official"
}
},
{
"tokenSymbol": "TX20",
"tokenName": "Trex20",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/TX20.png",
"tokenAddresses": [
{
"address": "0x29838b8c8b7cd6f0698c2fd6feaf0363d2cb6da1",
"chainId": "56"
}
],
"profileLinks": {
"siteUrl": "https://trex20.xyz/",
"twitterUrl": "https://twitter.com/trex20_official",
"telegramUrl": "https://t.me/trex20OfficialChat"
}
},
{
"tokenSymbol": "RTF",
"tokenName": "Ready to Fight",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/RTF.png",
"tokenAddresses": [
{
"address": "0xa89e2871a850e0e6fd8f0018ec1fc62fa75440d4",
"chainId": "1"
},
{
"address": "0xa89e2871a850e0e6fd8f0018ec1fc62fa75440d4",
"chainId": "56"
}
],
"profileLinks": {
"twitterUrl": "https://twitter.com/RTFight_App",
"siteUrl": "https://rtfight.com/",
"telegramUrl": "https://t.me/rtfight_com"
}
},
{
"tokenSymbol": "USDC",
"tokenLogoUrl": "https://cryptologos.cc/logos/usd-coin-usdc-logo.png?v=024",
Expand Down
Binary file added logos/O4DX.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/RTF.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/TX20.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 36 additions & 1 deletion src/constants/verifiedAssets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1268,6 +1268,41 @@ const verifiedAssets: AddressMapping[] = [
discordUrl: 'https://discord.com/invite/G3vWy8cbnK',
},
},
{
tokenSymbol: 'O4DX',
tokenName: 'OrangeDX',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/O4DX.png',
tokenAddresses: [{ address: '0x062ca2d2F1aF8C203FA3Ad5298FD6fAa4E44E897', chainId: '56' }],
profileLinks: {
siteUrl: 'https://orangedx.com/',
twitterUrl: 'https://twitter.com/OrangDx_BRC20',
telegramUrl: 'https://t.me/Orangedx_Official',
},
},
{
tokenSymbol: 'TX20',
tokenName: 'Trex20',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/TX20.png',
tokenAddresses: [{ address: '0x29838b8C8b7CD6F0698c2fd6feAf0363d2CB6dA1', chainId: '56' }],
profileLinks: {
siteUrl: 'https://trex20.xyz/',
twitterUrl: 'https://twitter.com/trex20_official',
telegramUrl: 'https://t.me/trex20OfficialChat',
},
},
{
tokenSymbol: 'RTF',
tokenName: 'Ready to Fight',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/RTF.png',
tokenAddresses: [
{ address: '0xa89e2871A850E0e6fD8F0018eC1fc62FA75440d4', chainId: '1' },
{ address: '0xa89e2871a850e0e6fd8f0018ec1fc62fa75440d4', chainId: '56' },
],
profileLinks: {
twitterUrl: 'https://twitter.com/RTFight_App',
siteUrl: 'https://rtfight.com/',
telegramUrl: 'https://t.me/rtfight_com',
},
},
]

export default verifiedAssets

0 comments on commit 0c137e7

Please sign in to comment.