Skip to content

Commit

Permalink
Merge pull request #108 from ApeSwapFinance/staging
Browse files Browse the repository at this point in the history
chore: Add Tokens to LHD
  • Loading branch information
efeDaniels authored Aug 20, 2024
2 parents 843ba65 + f7931c9 commit 61ffdcc
Show file tree
Hide file tree
Showing 5 changed files with 102 additions and 0 deletions.
62 changes: 62 additions & 0 deletions config/whitelist.json
Original file line number Diff line number Diff line change
Expand Up @@ -2780,6 +2780,68 @@
"discordUrl": "https://discord.com/invite/safle"
}
},
{
"tokenSymbol": "BXT",
"tokenName": "BaseX Token",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/BXT.png",
"tokenAddresses": [
{
"address": "0xb97008ca4f8d72c81489d6728c0036c0c4187ce8",
"chainId": "8453"
}
],
"profileLinks": {
"siteUrl": "https://www.basex.fi/",
"twitterUrl": "https://x.com/basex_fi",
"telegramUrl": "https://t.me/basex_fi",
"discordUrl": "https://discord.com/invite/63QCJtzXRk"
}
},
{
"tokenSymbol": "GOON",
"tokenName": "GOON",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/GOON.png",
"tokenAddresses": [
{
"address": "0x433cde5a82b5e0658da3543b47a375dffd126eb6",
"chainId": "137"
}
],
"profileLinks": {
"siteUrl": "https://www.0xgoon.com/",
"twitterUrl": "https://x.com/0xGOON_morning",
"telegramUrl": "https://t.me/GOON_morning",
"discordUrl": "https://discord.com/invite/haN8Y4BHak"
}
},
{
"tokenSymbol": "KAP",
"tokenName": "KAP Games",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/KAP.png",
"tokenAddresses": [
{
"address": "0x9625ce7753ace1fa1865a47aae2c5c2ce4418569",
"chainId": "1"
},
{
"address": "0x965d00aa7abc62ca10132e641d08593435ac811d",
"chainId": "42161"
},
{
"address": "0xc27158bb8e08899d38765752f91d7d778e16ab8e",
"chainId": "137"
},
{
"address": "0x15d24de366f69b835be19f7cf9447e770315dd80",
"chainId": "81457"
}
],
"profileLinks": {
"siteUrl": "https://www.kap.gg/",
"twitterUrl": "https://x.com/KAPGamesGG",
"discordUrl": "https://discord.com/invite/KAPGamesGG"
}
},
{
"tokenSymbol": "USDC",
"tokenLogoUrl": "https://cryptologos.cc/logos/usd-coin-usdc-logo.png?v=024",
Expand Down
Binary file added logos/BXT.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/GOON.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/KAP.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions src/constants/verifiedAssets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1664,5 +1664,45 @@ const verifiedAssets: AddressMapping[] = [
discordUrl: 'https://discord.com/invite/safle',
},
},
{
tokenSymbol: 'BXT',
tokenName: 'BaseX Token',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/BXT.png',
tokenAddresses: [{ address: '0xb97008ca4f8d72c81489d6728c0036c0c4187ce8', chainId: '8453' }],
profileLinks: {
siteUrl: 'https://www.basex.fi/',
twitterUrl: 'https://x.com/basex_fi',
telegramUrl: 'https://t.me/basex_fi',
discordUrl: 'https://discord.com/invite/63QCJtzXRk',
},
},
{
tokenSymbol: 'GOON',
tokenName: 'GOON',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/GOON.png',
tokenAddresses: [{ address: '0x433cde5a82b5e0658da3543b47a375dffd126eb6', chainId: '137' }],
profileLinks: {
siteUrl: 'https://www.0xgoon.com/',
twitterUrl: 'https://x.com/0xGOON_morning',
telegramUrl: 'https://t.me/GOON_morning',
discordUrl: 'https://discord.com/invite/haN8Y4BHak',
},
},
{
tokenSymbol: 'KAP',
tokenName: 'KAP Games',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/KAP.png',
tokenAddresses: [
{ address: '0x9625ce7753ace1fa1865a47aae2c5c2ce4418569', chainId: '1' },
{ address: '0x965d00aa7abc62ca10132e641d08593435ac811d', chainId: '42161' },
{ address: '0xc27158bb8e08899d38765752f91d7d778e16ab8e', chainId: '137' },
{ address: '0x15d24de366f69b835be19f7cf9447e770315dd80', chainId: '81457' },
],
profileLinks: {
siteUrl: 'https://www.kap.gg/',
twitterUrl: 'https://x.com/KAPGamesGG',
discordUrl: 'https://discord.com/invite/KAPGamesGG',
},
},
]
export default verifiedAssets

0 comments on commit 61ffdcc

Please sign in to comment.