From f606de3c8d1c0e883391157777070ba442b119c7 Mon Sep 17 00:00:00 2001 From: Efe Date: Thu, 2 Nov 2023 23:04:52 +0300 Subject: [PATCH 1/3] chore: Add BFG Token --- logos/BFG.svg | 92 +++++++++++++++++++++++++++++++++ src/constants/verifiedAssets.ts | 13 +++++ 2 files changed, 105 insertions(+) create mode 100644 logos/BFG.svg diff --git a/logos/BFG.svg b/logos/BFG.svg new file mode 100644 index 0000000..5819126 --- /dev/null +++ b/logos/BFG.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/constants/verifiedAssets.ts b/src/constants/verifiedAssets.ts index 56b7ee0..b4946bd 100644 --- a/src/constants/verifiedAssets.ts +++ b/src/constants/verifiedAssets.ts @@ -922,6 +922,19 @@ const verifiedAssets: AddressMapping[] = [ telegramUrl: 'https://t.me/lightlinkLL', }, }, + { + tokenSymbol: 'BFG', + tokenName: 'BFG Token', + tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/BFG.svg', + tokenAddresses: [{ address: '0xBb46693eBbEa1aC2070E59B4D043b47e2e095f86', chainId: '56s' }], + tags: ['Gambling'], + profileLinks: { + siteUrl: 'https://betfury.io/', + twitterUrl: 'https://twitter.com/betfury_gaming', + discordUrl: 'https://discord.com/invite/D2JNhSah55', + telegramUrl: 'https://t.me/Betfury', + }, + }, ] export default verifiedAssets From 8378a0c7719460f5440946bfb7f473029965dcbb Mon Sep 17 00:00:00 2001 From: Efe Date: Thu, 2 Nov 2023 23:05:16 +0300 Subject: [PATCH 2/3] chore: Add JSON file --- config/whitelist.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/config/whitelist.json b/config/whitelist.json index 331688e..624b69f 100644 --- a/config/whitelist.json +++ b/config/whitelist.json @@ -1683,6 +1683,26 @@ "telegramUrl": "https://t.me/lightlinkLL" } }, + { + "tokenSymbol": "BFG", + "tokenName": "BFG Token", + "tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/BFG.svg", + "tokenAddresses": [ + { + "address": "0xbb46693ebbea1ac2070e59b4d043b47e2e095f86", + "chainId": "56s" + } + ], + "tags": [ + "Gambling" + ], + "profileLinks": { + "siteUrl": "https://betfury.io/", + "twitterUrl": "https://twitter.com/betfury_gaming", + "discordUrl": "https://discord.com/invite/D2JNhSah55", + "telegramUrl": "https://t.me/Betfury" + } + }, { "tokenSymbol": "USDC", "tokenLogoUrl": "https://cryptologos.cc/logos/usd-coin-usdc-logo.png?v=024", From 42df9f7f45aedebba6b9daae7dfacdc23988f257 Mon Sep 17 00:00:00 2001 From: Efe Date: Thu, 2 Nov 2023 23:08:21 +0300 Subject: [PATCH 3/3] chore: Fix chainID typo --- config/whitelist.json | 2 +- src/constants/verifiedAssets.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/whitelist.json b/config/whitelist.json index 624b69f..cb938b0 100644 --- a/config/whitelist.json +++ b/config/whitelist.json @@ -1690,7 +1690,7 @@ "tokenAddresses": [ { "address": "0xbb46693ebbea1ac2070e59b4d043b47e2e095f86", - "chainId": "56s" + "chainId": "56" } ], "tags": [ diff --git a/src/constants/verifiedAssets.ts b/src/constants/verifiedAssets.ts index b4946bd..f83306b 100644 --- a/src/constants/verifiedAssets.ts +++ b/src/constants/verifiedAssets.ts @@ -926,7 +926,7 @@ const verifiedAssets: AddressMapping[] = [ tokenSymbol: 'BFG', tokenName: 'BFG Token', tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/BFG.svg', - tokenAddresses: [{ address: '0xBb46693eBbEa1aC2070E59B4D043b47e2e095f86', chainId: '56s' }], + tokenAddresses: [{ address: '0xBb46693eBbEa1aC2070E59B4D043b47e2e095f86', chainId: '56' }], tags: ['Gambling'], profileLinks: { siteUrl: 'https://betfury.io/',