Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add WAVAX Token #124

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions config/whitelist.json
Original file line number Diff line number Diff line change
Expand Up @@ -3414,6 +3414,43 @@
"telegramUrl": "https://t.me/elk_finance_chat"
}
},
{
"tokenSymbol": "WAVAX",
"tokenName": "Wrapped AVAX",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/WAVAX.png",
"tokenAddresses": [
{
"address": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7",
"chainId": "43114"
},
{
"address": "0x14a0243c333a5b238143068dc3a7323ba4c30ecb",
"chainId": "1285"
},
{
"address": "0x511d35c52a3c244e7b8bd92c0c297755fbd89212",
"chainId": "250"
},
{
"address": "0x2c89bbc92bd86f8075d1decc58c7f4e0107f286b",
"chainId": "137"
},
{
"address": "0x7c598c96d02398d89fbcb9d41eab3df0c16f227d",
"chainId": "40"
},
{
"address": "0x5471ea8f739dd37e9b81be9c5c77754d8aa953e4",
"chainId": "59144"
}
],
"profileLinks": {
"siteUrl": "https://www.avalabs.org/",
"twitterUrl": "https://x.com/avax",
"discordUrl": "https://discord.com/invite/RwXY7P6",
"telegramUrl": "https://t.me/avalancheavax"
}
},
{
"tokenSymbol": "USDC",
"tokenLogoUrl": "https://cryptologos.cc/logos/usd-coin-usdc-logo.png?v=024",
Expand Down
Binary file added logos/WAVAX.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions src/constants/verifiedAssets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2090,5 +2090,24 @@ const verifiedAssets: AddressMapping[] = [
telegramUrl: 'https://t.me/elk_finance_chat',
},
},
{
tokenSymbol: 'WAVAX',
tokenName: 'Wrapped AVAX',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/WAVAX.png',
tokenAddresses: [
{ address: '0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7', chainId: '43114' },
{ address: '0x14a0243c333a5b238143068dc3a7323ba4c30ecb', chainId: '1285' },
{ address: '0x511d35c52a3c244e7b8bd92c0c297755fbd89212', chainId: '250' },
{ address: '0x2c89bbc92bd86f8075d1decc58c7f4e0107f286b', chainId: '137' },
{ address: '0x7c598c96d02398d89fbcb9d41eab3df0c16f227d', chainId: '40' },
{ address: '0x5471ea8f739dd37e9b81be9c5c77754d8aa953e4', chainId: '59144' },
],
profileLinks: {
siteUrl: 'https://www.avalabs.org/',
twitterUrl: 'https://x.com/avax',
discordUrl: 'https://discord.com/invite/RwXY7P6',
telegramUrl: 'https://t.me/avalancheavax',
},
},
]
export default verifiedAssets
Loading