Skip to content

Commit

Permalink
Merge pull request #87 from ApeSwapFinance/staging
Browse files Browse the repository at this point in the history
chore: Add FLASH And SKR Token
  • Loading branch information
efeDaniels committed Jun 7, 2024
2 parents d0a144b + b4efe39 commit bc2755e
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 0 deletions.
41 changes: 41 additions & 0 deletions config/whitelist.json
Original file line number Diff line number Diff line change
Expand Up @@ -2441,6 +2441,47 @@
"telegramUrl": "https://t.me/hapticai"
}
},
{
"tokenSymbol": "FLASH",
"tokenName": "Flash Protocol",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/FLASH.png",
"tokenAddresses": [
{
"address": "0xca95a6b21a8101d8e34c153d31dc563ff897ebef",
"chainId": "1"
}
],
"profileLinks": {
"siteUrl": "https://flashprotocol.xyz/",
"twitterUrl": "https://x.com/flashprotocol",
"telegramUrl": "https://t.me/flashprotocol"
}
},
{
"tokenSymbol": "SKR",
"tokenName": "Saakuru",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/SKR.png",
"tokenAddresses": [
{
"address": "0xe2dca969624795985f2f083bcd0b674337ba130a",
"chainId": "1"
},
{
"address": "0xe2dca969624795985f2f083bcd0b674337ba130a",
"chainId": "56"
},
{
"address": "0xe2dca969624795985f2f083bcd0b674337ba130a",
"chainId": "10"
}
],
"profileLinks": {
"siteUrl": "https://saakuru.com/",
"twitterUrl": "https://x.com/saakuru_labs",
"discordUrl": "https://discord.com/invite/saakuruprotocol",
"telegramUrl": "https://t.me/aagventures"
}
},
{
"tokenSymbol": "USDC",
"tokenLogoUrl": "https://cryptologos.cc/logos/usd-coin-usdc-logo.png?v=024",
Expand Down
Binary file added logos/FLASH.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/SKR.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions src/constants/verifiedAssets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1429,5 +1429,32 @@ const verifiedAssets: AddressMapping[] = [
telegramUrl: 'https://t.me/hapticai',
},
},
{
tokenSymbol: 'FLASH',
tokenName: 'Flash Protocol',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/FLASH.png',
tokenAddresses: [{ address: '0xCa95A6B21A8101d8e34c153d31dc563Ff897EbEF', chainId: '1' }],
profileLinks: {
siteUrl: 'https://flashprotocol.xyz/',
twitterUrl: 'https://x.com/flashprotocol',
telegramUrl: 'https://t.me/flashprotocol',
},
},
{
tokenSymbol: 'SKR',
tokenName: 'Saakuru',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/SKR.png',
tokenAddresses: [
{ address: '0xe2dca969624795985f2f083bcd0b674337ba130a', chainId: '1' },
{ address: '0xe2dca969624795985f2f083bcd0b674337ba130a', chainId: '56' },
{ address: '0xe2dca969624795985f2f083bcd0b674337ba130a', chainId: '10' },
],
profileLinks: {
siteUrl: 'https://saakuru.com/',
twitterUrl: 'https://x.com/saakuru_labs',
discordUrl: 'https://discord.com/invite/saakuruprotocol',
telegramUrl: 'https://t.me/aagventures',
},
},
]
export default verifiedAssets

0 comments on commit bc2755e

Please sign in to comment.