Skip to content

Commit

Permalink
Merge pull request #105 from ApeSwapFinance/staging
Browse files Browse the repository at this point in the history
chore: Add LRDS and BONSAI Token
  • Loading branch information
shivammp authored Aug 9, 2024
2 parents 5f359fc + 637feeb commit d71288b
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
33 changes: 33 additions & 0 deletions config/whitelist.json
Original file line number Diff line number Diff line change
Expand Up @@ -2698,6 +2698,39 @@
"telegramUrl": "https://t.me/truflation"
}
},
{
"tokenSymbol": "LRDS",
"tokenName": "BLOCKLORDS",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/LRDS.png",
"tokenAddresses": [
{
"address": "0xd0a6053f087e87a25dc60701ba6e663b1a548e85",
"chainId": "1"
}
],
"profileLinks": {
"siteUrl": "https://blocklords.com/",
"twitterUrl": "https://x.com/blocklords",
"telegramUrl": "https://t.me/blocklordsgame",
"discordUrl": "https://discord.com/invite/GvAgknxQRv"
}
},
{
"tokenSymbol": "BONSAI",
"tokenName": "Bonsai",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/BONSAI.png",
"tokenAddresses": [
{
"address": "0x79ead7a012d97ed8deece279f9bc39e264d7eef9",
"chainId": "42161"
}
],
"profileLinks": {
"siteUrl": "https://www.bonsaidao.xyz/",
"twitterUrl": "https://x.com/bonsai_dao",
"discordUrl": "https://discord.com/invite/bonsaidao"
}
},
{
"tokenSymbol": "USDC",
"tokenLogoUrl": "https://cryptologos.cc/logos/usd-coin-usdc-logo.png?v=024",
Expand Down
Binary file added logos/BONSAI.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/LRDS.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions src/constants/verifiedAssets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1611,5 +1611,28 @@ const verifiedAssets: AddressMapping[] = [
telegramUrl: 'https://t.me/truflation',
},
},
{
tokenSymbol: 'LRDS',
tokenName: 'BLOCKLORDS',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/LRDS.png',
tokenAddresses: [{ address: '0xd0a6053f087e87a25dc60701ba6e663b1a548e85', chainId: '1' }],
profileLinks: {
siteUrl: 'https://blocklords.com/',
twitterUrl: 'https://x.com/blocklords',
telegramUrl: 'https://t.me/blocklordsgame',
discordUrl: 'https://discord.com/invite/GvAgknxQRv',
},
},
{
tokenSymbol: 'BONSAI',
tokenName: 'Bonsai',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/BONSAI.png',
tokenAddresses: [{ address: '0x79ead7a012d97ed8deece279f9bc39e264d7eef9', chainId: '42161' }],
profileLinks: {
siteUrl: 'https://www.bonsaidao.xyz/',
twitterUrl: 'https://x.com/bonsai_dao',
discordUrl: 'https://discord.com/invite/bonsaidao',
},
},
]
export default verifiedAssets

0 comments on commit d71288b

Please sign in to comment.