Skip to content

Commit

Permalink
chore: Add KNIGHT Token + Fix logo issue
Browse files Browse the repository at this point in the history
  • Loading branch information
efeDaniels committed Oct 9, 2023
1 parent aa837e4 commit 6745d2e
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 161 deletions.
30 changes: 28 additions & 2 deletions config/whitelist.json
Original file line number Diff line number Diff line change
Expand Up @@ -1513,7 +1513,7 @@
{
"tokenSymbol": "HGPT",
"tokenName": "HYPERGPT",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/HGPT.svg",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/HGPT.png",
"tokenAddresses": [
{
"address": "0x529c79f6918665ebe250f32eeeaa1d410a0798c6",
Expand Down Expand Up @@ -1562,7 +1562,7 @@
{
"tokenSymbol": "DUCKIES",
"tokenName": "Yellow Duckies",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/DUCKIES.svg",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/DUCKIES.png",
"tokenAddresses": [
{
"address": "0x18e73a5333984549484348a94f4d219f4fab7b81",
Expand All @@ -1580,6 +1580,32 @@
"telegramUrl": "https://t.me/yellow_org"
}
},
{
"tokenSymbol": "KNIGHT",
"tokenName": "Forest King",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/KNIGHT.png",
"tokenAddresses": [
{
"address": "0x4455ef8b4b4a007a93daa12de63a47eeac700d9d",
"chainId": "137"
}
],
"knownOwners": [
"0x519fced9ccceceb76e1a65194282f13f0deb3187"
],
"tags": [
"GameFi"
],
"profileLinks": {
"siteUrl": "https://www.forestknight.io/",
"twitterUrl": "https://twitter.com/ForestKnight_io",
"auditUrls": [
"https://skynet.certik.com/projects/forest-knight?utm_source=CMC&utm_campaign=AuditByCertiKLink"
],
"discordUrl": "https://discord.com/invite/2awyWYG",
"telegramUrl": "https://www.t.me/forestknight"
}
},
{
"tokenSymbol": "USDC",
"tokenLogoUrl": "https://cryptologos.cc/logos/usd-coin-usdc-logo.png?v=024",
Expand Down
Binary file added logos/DUCKIES.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
135 changes: 0 additions & 135 deletions logos/DUCKIES.svg

This file was deleted.

Binary file added logos/HGPT.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: 0 additions & 22 deletions logos/HGPT.svg

This file was deleted.

Binary file added logos/KNIGHT.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: 17 additions & 2 deletions src/constants/verifiedAssets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ const verifiedAssets: AddressMapping[] = [
{
tokenSymbol: 'HGPT',
tokenName: 'HYPERGPT',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/HGPT.svg',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/HGPT.png',
tokenAddresses: [{ address: '0x529C79f6918665EBE250F32eeEAA1d410a0798C6', chainId: '56' }],
knownOwners: [
'0x0681Ef17B9E4fB7957b3AD34b494Fd6679d6143E',
Expand Down Expand Up @@ -846,7 +846,7 @@ const verifiedAssets: AddressMapping[] = [
{
tokenSymbol: 'DUCKIES',
tokenName: 'Yellow Duckies',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/DUCKIES.svg',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/DUCKIES.png',
tokenAddresses: [{ address: '0x18e73A5333984549484348A94f4D219f4faB7b81', chainId: '137' }],
knownOwners: ['0x046bBDD927FC635DD6DE7Cf4eFDAD3E767274074', '0x801b684E7854493E3aDa893343D3E288CfcEE1Ec'],
profileLinks: {
Expand All @@ -856,6 +856,21 @@ const verifiedAssets: AddressMapping[] = [
telegramUrl: 'https://t.me/yellow_org',
},
},
{
tokenSymbol: 'KNIGHT',
tokenName: 'Forest King',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/KNIGHT.png',
tokenAddresses: [{ address: '0x4455eF8B4B4A007a93DaA12DE63a47EEAC700D9D', chainId: '137' }],
knownOwners: ['0x519fced9ccceceb76e1a65194282f13f0deb3187'],
tags: ['GameFi'],
profileLinks: {
siteUrl: 'https://www.forestknight.io/',
twitterUrl: 'https://twitter.com/ForestKnight_io',
auditUrls: ['https://skynet.certik.com/projects/forest-knight?utm_source=CMC&utm_campaign=AuditByCertiKLink'],
discordUrl: 'https://discord.com/invite/2awyWYG',
telegramUrl: 'https://www.t.me/forestknight',
},
},
]

export default verifiedAssets

0 comments on commit 6745d2e

Please sign in to comment.