Skip to content

Commit

Permalink
chore: Add BOM and A51 tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
efeDaniels committed Apr 10, 2024
1 parent 620e985 commit ea4ec82
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 0 deletions.
32 changes: 32 additions & 0 deletions config/whitelist.json
Original file line number Diff line number Diff line change
Expand Up @@ -1985,6 +1985,38 @@
"discordUrl": "https://discord.com/invite/W74JcFPGcb"
}
},
{
"tokenSymbol": "A51",
"tokenName": "A51 Finance",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/A51.png",
"tokenAddresses": [
{
"address": "0xe9e7c09e82328c3107d367f6c617cf9977e63ed0",
"chainId": "137"
}
],
"profileLinks": {
"siteUrl": "https://a51.finance/",
"twitterUrl": "https://twitter.com/A51_Fi",
"telegramUrl": "https://t.me/a51_fi"
}
},
{
"tokenSymbol": "BOM",
"tokenName": "Borderless Money",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/BOM.png",
"tokenAddresses": [
{
"address": "0xc59132fbdf8de8fbe510f568a5d831c991b4fc38",
"chainId": "137"
}
],
"profileLinks": {
"siteUrl": "https://www.borderless.money/",
"twitterUrl": "https://twitter.com/borderless_refi",
"telegramUrl": "https://t.me/borderlessmoney"
}
},
{
"tokenSymbol": "USDC",
"tokenLogoUrl": "https://cryptologos.cc/logos/usd-coin-usdc-logo.png?v=024",
Expand Down
Binary file added logos/A51.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/BOM.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions src/constants/verifiedAssets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1120,6 +1120,28 @@ const verifiedAssets: AddressMapping[] = [
discordUrl: 'https://discord.com/invite/W74JcFPGcb',
},
},
{
tokenSymbol: 'A51',
tokenName: 'A51 Finance',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/A51.png',
tokenAddresses: [{ address: '0xe9E7c09e82328c3107d367f6c617cF9977e63ED0', chainId: '137' }],
profileLinks: {
siteUrl: 'https://a51.finance/',
twitterUrl: 'https://twitter.com/A51_Fi',
telegramUrl: 'https://t.me/a51_fi',
},
},
{
tokenSymbol: 'BOM',
tokenName: 'Borderless Money',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/BOM.png',
tokenAddresses: [{ address: '0xc59132FBdF8dE8fbE510F568a5D831C991B4fC38', chainId: '137' }],
profileLinks: {
siteUrl: 'https://www.borderless.money/',
twitterUrl: 'https://twitter.com/borderless_refi',
telegramUrl: 'https://t.me/borderlessmoney',
},
},
]

export default verifiedAssets

0 comments on commit ea4ec82

Please sign in to comment.