From 263dea40031427f72b934b07d7c8c17ce25a912f Mon Sep 17 00:00:00 2001 From: AK <58132405+0xa3k5@users.noreply.github.com> Date: Wed, 30 Oct 2024 18:46:22 +0300 Subject: [PATCH] new networks: taiko, moonbase-alpha, lumio (#41) * add new networks: taiko, moonbase-alpha, lumio * build * changeset --- apps/figma-plugin/package.json | 4 +- apps/website/package.json | 6 +- docs/icons.md | 5 +- package.json | 10 +- packages/common/CHANGELOG.md | 6 + packages/common/package.json | 2 +- packages/common/src/metadata/networks.json | 23 + packages/common/src/metadata/networks.ts | 31 + packages/core/CHANGELOG.md | 6 + packages/core/package.json | 6 +- packages/core/src/svg-module.ts | 10 + packages/core/src/svgs/index.ts | 5 + .../core/src/svgs/networks/branded/lumio.svg | 15 + .../svgs/networks/branded/moonbase-alpha.svg | 3 + .../core/src/svgs/networks/branded/taiko.svg | 3 + .../src/svgs/networks/mono/moonbase-alpha.svg | 3 + .../core/src/svgs/networks/mono/taiko.svg | 3 + packages/react/CHANGELOG.md | 11 + packages/react/package.json | 4 +- packages/react/src/utils/icon-import-map.ts | 3 + packages/utils/CHANGELOG.md | 8 + packages/utils/package.json | 4 +- .../src/scripts/gecko/custom-networks.json | 13 + .../utils/src/scripts/gecko/gecko-coins.json | 1540 +++++++++++------ .../src/scripts/gecko/gecko-networks.json | 32 +- raw-svgs/networks/branded/lumio.svg | 15 + raw-svgs/networks/branded/moonbase-alpha.svg | 3 + raw-svgs/networks/branded/taiko.svg | 3 + raw-svgs/networks/mono/moonbase-alpha.svg | 3 + raw-svgs/networks/mono/taiko.svg | 3 + 30 files changed, 1227 insertions(+), 556 deletions(-) create mode 100644 packages/core/src/svgs/networks/branded/lumio.svg create mode 100644 packages/core/src/svgs/networks/branded/moonbase-alpha.svg create mode 100644 packages/core/src/svgs/networks/branded/taiko.svg create mode 100644 packages/core/src/svgs/networks/mono/moonbase-alpha.svg create mode 100644 packages/core/src/svgs/networks/mono/taiko.svg create mode 100644 raw-svgs/networks/branded/lumio.svg create mode 100644 raw-svgs/networks/branded/moonbase-alpha.svg create mode 100644 raw-svgs/networks/branded/taiko.svg create mode 100644 raw-svgs/networks/mono/moonbase-alpha.svg create mode 100644 raw-svgs/networks/mono/taiko.svg diff --git a/apps/figma-plugin/package.json b/apps/figma-plugin/package.json index 5c7b07127..8440daf0b 100644 --- a/apps/figma-plugin/package.json +++ b/apps/figma-plugin/package.json @@ -22,8 +22,8 @@ "@create-figma-plugin/ui": "^3.1.0", "@create-figma-plugin/utilities": "^3.1.0", "preact": ">=10", - "@web3icons/core": "3.10.0", - "@web3icons/common": "0.4.1" + "@web3icons/core": "3.11.0", + "@web3icons/common": "0.5.0" }, "devDependencies": { "@create-figma-plugin/build": "^3.1.0", diff --git a/apps/website/package.json b/apps/website/package.json index 395f4e448..fef7d98d2 100644 --- a/apps/website/package.json +++ b/apps/website/package.json @@ -14,9 +14,9 @@ "@types/react": "18.2.64", "@types/react-dom": "18.2.21", "@vercel/analytics": "^1.2.2", - "@web3icons/react": "3.10.1", - "@web3icons/common": "0.4.1", - "@web3icons/core": "3.10.0", + "@web3icons/react": "3.11.0", + "@web3icons/common": "0.5.0", + "@web3icons/core": "3.11.0", "autoprefixer": "10.4.18", "eslint": "8.57.0", "eslint-config-next": "14.1.3", diff --git a/docs/icons.md b/docs/icons.md index 1d1bee627..1f79870a5 100644 --- a/docs/icons.md +++ b/docs/icons.md @@ -1,7 +1,7 @@ jump to section: - [wallets (38)](#wallets) -- [networks (140)](#networks) +- [networks (143)](#networks) - [tokens (1899)](#tokens) ### Wallets @@ -191,6 +191,9 @@ jump to section: | orderly | Orderly | ✅ | ✅ | | moonbase | moonbase | ✅ | ✅ | | unichain | Unichain | ✅ | ✅ | +| lumio | Super Lumio | ✅ | ❌ | +| mooonbase-alpha | Moonbase Alpha | ✅ | ✅ | +| taiko | Taiko | ✅ | ✅ | ### Tokens diff --git a/package.json b/package.json index 578317417..cfee845d2 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,14 @@ "author": "0xa3k5", "scripts": { "build": "turbo build && bun run post-build", - "build:core": "turbo run build:core && bun run post-build", - "build:react": "turbo run build:react && bun run post-build", + "build:packages": "bun run build:common && bun run build:utils && bun run build:core && bun run build:react", + "build:apps": "bun run build:website && bun run build:figma", + "build:common": "bun run build --filter@web3icons/common", + "build:utils": "bun run --filter@webi3cons/utils", + "build:core": "bun run build --filter@web3icons/core", + "build:react": "bun run build --filter@webi3cons/react", + "build:website": "bun run build --filter@webi3cons/website", + "build:figma": "bun run build --filter@webi3cons/figma-plugin", "post-build": "bun run generate-icons-md && bun run lint && bun run format", "dev": "turbo dev", "lint": "turbo lint", diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index 258f0323f..de8af5125 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -1,5 +1,11 @@ # @web3icons/common +## 0.5.0 + +### Minor Changes + +- new networks: taiko, moonbase-alpha, lumio + ## 0.4.1 ### Patch Changes diff --git a/packages/common/package.json b/packages/common/package.json index 6bea65132..34f9152b3 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -11,7 +11,7 @@ "svg crypto icons", "coin icons" ], - "version": "0.4.1", + "version": "0.5.0", "private": false, "author": "0xa3k5", "license": "MIT", diff --git a/packages/common/src/metadata/networks.json b/packages/common/src/metadata/networks.json index ee565853e..a611c3c7a 100644 --- a/packages/common/src/metadata/networks.json +++ b/packages/common/src/metadata/networks.json @@ -1086,5 +1086,28 @@ "shortName": "uni", "chainId": 130, "nativeCoinId": "eth" + }, + { + "id": "lumio", + "name": "Super Lumio", + "variants": ["branded"], + "shortName": "lumio", + "chainId": 8866, + "nativeCoinId": "eth" + }, + { + "id": "mooonbase-alpha", + "name": "Moonbase Alpha", + "variants": ["branded", "mono"], + "shortName": "moonbase alpha", + "chainId": 1287 + }, + { + "id": "taiko", + "name": "Taiko", + "variants": ["branded", "mono"], + "shortName": "taiko", + "chainId": 167000, + "nativeCoinId": "taiko" } ] diff --git a/packages/common/src/metadata/networks.ts b/packages/common/src/metadata/networks.ts index e820625ef..d42e72e9d 100644 --- a/packages/common/src/metadata/networks.ts +++ b/packages/common/src/metadata/networks.ts @@ -1081,4 +1081,35 @@ export const networks: INetworkMetadata[] = [ shortName: 'moonbase', chainId: 1287, }, + { + id: 'unichain', + name: 'Unichain', + variants: ['branded', 'mono'], + shortName: 'uni', + chainId: 130, + nativeCoinId: 'eth', + }, + { + id: 'lumio', + name: 'Super Lumio', + variants: ['branded'], + shortName: 'lumio', + chainId: 8866, + nativeCoinId: 'eth', + }, + { + id: 'mooonbase-alpha', + name: 'Moonbase Alpha', + variants: ['branded', 'mono'], + shortName: 'moonbase alpha', + chainId: 1287, + }, + { + id: 'taiko', + name: 'Taiko', + variants: ['branded', 'mono'], + shortName: 'taiko', + chainId: 167000, + nativeCoinId: 'taiko', + }, ] diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index b73f14b05..08685b09e 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,11 @@ # @web3icons/core +## 3.11.0 + +### Minor Changes + +- new networks: taiko, moonbase-alpha, lumio + ## 3.10.0 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index 1341c1330..a563a4ed8 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -11,7 +11,7 @@ "svg crypto icons", "coin icons" ], - "version": "3.10.0", + "version": "3.11.0", "private": false, "author": "0xa3k5", "license": "MIT", @@ -41,8 +41,8 @@ "access": "public" }, "scripts": { - "build": "bun run --bun pre-build && bun run build:types && tsup && bun run post-build", - "pre-build": "(cd ../utils && bun run pre-build:core)", + "build": "bun run pre-build && bun run build:types && tsup && bun run post-build", + "pre-build": "cd ../utils && bun run pre-build:core", "build:types": "tsc --outDir dist/types --declarationDir dist/types --declaration true", "post-build": "bun run src/post-build-fix-paths.ts && bun run lint && bun run format", "lint": "eslint ./src --ext .ts", diff --git a/packages/core/src/svg-module.ts b/packages/core/src/svg-module.ts index f6760bce2..fc7f66027 100644 --- a/packages/core/src/svg-module.ts +++ b/packages/core/src/svg-module.ts @@ -3455,7 +3455,9 @@ import * as NBrandedKarura from './svgs/networks/branded/karura.svg' import * as NBrandedSui from './svgs/networks/branded/sui.svg' import * as NBrandedRonin from './svgs/networks/branded/ronin.svg' import * as NBrandedBitkubChain from './svgs/networks/branded/bitkub-chain.svg' +import * as NBrandedMoonbaseAlpha from './svgs/networks/branded/moonbase-alpha.svg' import * as NBrandedGnosis from './svgs/networks/branded/gnosis.svg' +import * as NBrandedLumio from './svgs/networks/branded/lumio.svg' import * as NBrandedKakarot from './svgs/networks/branded/kakarot.svg' import * as NBrandedXLayer from './svgs/networks/branded/x-layer.svg' import * as NBrandedEnergyWeb from './svgs/networks/branded/energy-web.svg' @@ -3469,6 +3471,7 @@ import * as NBrandedBoba from './svgs/networks/branded/boba.svg' import * as NBrandedViction from './svgs/networks/branded/viction.svg' import * as NBrandedImmutable from './svgs/networks/branded/immutable.svg' import * as NBrandedFlare from './svgs/networks/branded/flare.svg' +import * as NBrandedTaiko from './svgs/networks/branded/taiko.svg' import * as NBrandedLyra from './svgs/networks/branded/lyra.svg' import * as NBrandedStarknet from './svgs/networks/branded/starknet.svg' import * as NBrandedMoonbeam from './svgs/networks/branded/moonbeam.svg' @@ -3587,6 +3590,7 @@ import * as NMonoKarura from './svgs/networks/mono/karura.svg' import * as NMonoSui from './svgs/networks/mono/sui.svg' import * as NMonoRonin from './svgs/networks/mono/ronin.svg' import * as NMonoBitkubChain from './svgs/networks/mono/bitkub-chain.svg' +import * as NMonoMoonbaseAlpha from './svgs/networks/mono/moonbase-alpha.svg' import * as NMonoGnosis from './svgs/networks/mono/gnosis.svg' import * as NMonoXrp from './svgs/networks/mono/xrp.svg' import * as NMonoKakarot from './svgs/networks/mono/kakarot.svg' @@ -3602,6 +3606,7 @@ import * as NMonoBoba from './svgs/networks/mono/boba.svg' import * as NMonoViction from './svgs/networks/mono/viction.svg' import * as NMonoImmutable from './svgs/networks/mono/immutable.svg' import * as NMonoFlare from './svgs/networks/mono/flare.svg' +import * as NMonoTaiko from './svgs/networks/mono/taiko.svg' import * as NMonoLyra from './svgs/networks/mono/lyra.svg' import * as NMonoStarknet from './svgs/networks/mono/starknet.svg' import * as NMonoMoonbeam from './svgs/networks/mono/moonbeam.svg' @@ -7182,6 +7187,7 @@ export const svgs = { sui: NMonoSui, ronin: NMonoRonin, 'bitkub-chain': NMonoBitkubChain, + 'moonbase-alpha': NMonoMoonbaseAlpha, gnosis: NMonoGnosis, xrp: NMonoXrp, kakarot: NMonoKakarot, @@ -7197,6 +7203,7 @@ export const svgs = { viction: NMonoViction, immutable: NMonoImmutable, flare: NMonoFlare, + taiko: NMonoTaiko, lyra: NMonoLyra, starknet: NMonoStarknet, moonbeam: NMonoMoonbeam, @@ -7318,7 +7325,9 @@ export const svgs = { sui: NBrandedSui, ronin: NBrandedRonin, 'bitkub-chain': NBrandedBitkubChain, + 'moonbase-alpha': NBrandedMoonbaseAlpha, gnosis: NBrandedGnosis, + lumio: NBrandedLumio, kakarot: NBrandedKakarot, 'x-layer': NBrandedXLayer, 'energy-web': NBrandedEnergyWeb, @@ -7332,6 +7341,7 @@ export const svgs = { viction: NBrandedViction, immutable: NBrandedImmutable, flare: NBrandedFlare, + taiko: NBrandedTaiko, lyra: NBrandedLyra, starknet: NBrandedStarknet, moonbeam: NBrandedMoonbeam, diff --git a/packages/core/src/svgs/index.ts b/packages/core/src/svgs/index.ts index c09a03f81..e41aea31c 100644 --- a/packages/core/src/svgs/index.ts +++ b/packages/core/src/svgs/index.ts @@ -3454,7 +3454,9 @@ export * as NetworkBrandedKarura from './networks/branded/karura.svg' export * as NetworkBrandedSui from './networks/branded/sui.svg' export * as NetworkBrandedRonin from './networks/branded/ronin.svg' export * as NetworkBrandedBitkubChain from './networks/branded/bitkub-chain.svg' +export * as NetworkBrandedMoonbaseAlpha from './networks/branded/moonbase-alpha.svg' export * as NetworkBrandedGnosis from './networks/branded/gnosis.svg' +export * as NetworkBrandedLumio from './networks/branded/lumio.svg' export * as NetworkBrandedKakarot from './networks/branded/kakarot.svg' export * as NetworkBrandedXLayer from './networks/branded/x-layer.svg' export * as NetworkBrandedEnergyWeb from './networks/branded/energy-web.svg' @@ -3468,6 +3470,7 @@ export * as NetworkBrandedBoba from './networks/branded/boba.svg' export * as NetworkBrandedViction from './networks/branded/viction.svg' export * as NetworkBrandedImmutable from './networks/branded/immutable.svg' export * as NetworkBrandedFlare from './networks/branded/flare.svg' +export * as NetworkBrandedTaiko from './networks/branded/taiko.svg' export * as NetworkBrandedLyra from './networks/branded/lyra.svg' export * as NetworkBrandedStarknet from './networks/branded/starknet.svg' export * as NetworkBrandedMoonbeam from './networks/branded/moonbeam.svg' @@ -3586,6 +3589,7 @@ export * as NetworkMonoKarura from './networks/mono/karura.svg' export * as NetworkMonoSui from './networks/mono/sui.svg' export * as NetworkMonoRonin from './networks/mono/ronin.svg' export * as NetworkMonoBitkubChain from './networks/mono/bitkub-chain.svg' +export * as NetworkMonoMoonbaseAlpha from './networks/mono/moonbase-alpha.svg' export * as NetworkMonoGnosis from './networks/mono/gnosis.svg' export * as NetworkMonoXrp from './networks/mono/xrp.svg' export * as NetworkMonoKakarot from './networks/mono/kakarot.svg' @@ -3601,6 +3605,7 @@ export * as NetworkMonoBoba from './networks/mono/boba.svg' export * as NetworkMonoViction from './networks/mono/viction.svg' export * as NetworkMonoImmutable from './networks/mono/immutable.svg' export * as NetworkMonoFlare from './networks/mono/flare.svg' +export * as NetworkMonoTaiko from './networks/mono/taiko.svg' export * as NetworkMonoLyra from './networks/mono/lyra.svg' export * as NetworkMonoStarknet from './networks/mono/starknet.svg' export * as NetworkMonoMoonbeam from './networks/mono/moonbeam.svg' diff --git a/packages/core/src/svgs/networks/branded/lumio.svg b/packages/core/src/svgs/networks/branded/lumio.svg new file mode 100644 index 000000000..6750f255e --- /dev/null +++ b/packages/core/src/svgs/networks/branded/lumio.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/packages/core/src/svgs/networks/branded/moonbase-alpha.svg b/packages/core/src/svgs/networks/branded/moonbase-alpha.svg new file mode 100644 index 000000000..944336fa3 --- /dev/null +++ b/packages/core/src/svgs/networks/branded/moonbase-alpha.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/core/src/svgs/networks/branded/taiko.svg b/packages/core/src/svgs/networks/branded/taiko.svg new file mode 100644 index 000000000..e8005c29b --- /dev/null +++ b/packages/core/src/svgs/networks/branded/taiko.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/core/src/svgs/networks/mono/moonbase-alpha.svg b/packages/core/src/svgs/networks/mono/moonbase-alpha.svg new file mode 100644 index 000000000..475978984 --- /dev/null +++ b/packages/core/src/svgs/networks/mono/moonbase-alpha.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/core/src/svgs/networks/mono/taiko.svg b/packages/core/src/svgs/networks/mono/taiko.svg new file mode 100644 index 000000000..d0b68a947 --- /dev/null +++ b/packages/core/src/svgs/networks/mono/taiko.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 9c3dcbc7e..b2ef7449c 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,16 @@ # @web3icons/react +## 3.11.0 + +### Minor Changes + +- new networks: taiko, moonbase-alpha, lumio + +### Patch Changes + +- Updated dependencies + - @web3icons/common@0.5.0 + ## 3.10.1 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index 792f98e1c..e56da4233 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -11,7 +11,7 @@ "crypto logos", "coin icons" ], - "version": "3.10.1", + "version": "3.11.0", "private": false, "license": "MIT", "type": "module", @@ -41,7 +41,7 @@ "clean": "rm -rf dist" }, "dependencies": { - "@web3icons/common": "0.4.1", + "@web3icons/common": "0.5.0", "react": "^18.2.0" }, "devDependencies": { diff --git a/packages/react/src/utils/icon-import-map.ts b/packages/react/src/utils/icon-import-map.ts index 706e385b4..cd253fe5e 100644 --- a/packages/react/src/utils/icon-import-map.ts +++ b/packages/react/src/utils/icon-import-map.ts @@ -64,6 +64,7 @@ export const NETWORK_ICON_IMPORT_MAP: IconImportMap = { NetworkNeonEvm: () => import('../icons/networks/NetworkNeonEvm'), NetworkRootstock: () => import('../icons/networks/NetworkRootstock'), NetworkLavaNetwork: () => import('../icons/networks/NetworkLavaNetwork'), + NetworkMoonbaseAlpha: () => import('../icons/networks/NetworkMoonbaseAlpha'), NetworkMeter: () => import('../icons/networks/NetworkMeter'), NetworkTheta: () => import('../icons/networks/NetworkTheta'), NetworkZilliqa: () => import('../icons/networks/NetworkZilliqa'), @@ -132,6 +133,7 @@ export const NETWORK_ICON_IMPORT_MAP: IconImportMap = { NetworkUltron: () => import('../icons/networks/NetworkUltron'), NetworkPolygonPos: () => import('../icons/networks/NetworkPolygonPos'), NetworkEthereum: () => import('../icons/networks/NetworkEthereum'), + NetworkLumio: () => import('../icons/networks/NetworkLumio'), NetworkArbitrumNova: () => import('../icons/networks/NetworkArbitrumNova'), NetworkMilkomedaA1: () => import('../icons/networks/NetworkMilkomedaA1'), NetworkLightlink: () => import('../icons/networks/NetworkLightlink'), @@ -148,6 +150,7 @@ export const NETWORK_ICON_IMPORT_MAP: IconImportMap = { NetworkAlgorand: () => import('../icons/networks/NetworkAlgorand'), NetworkSolana: () => import('../icons/networks/NetworkSolana'), NetworkMoonbase: () => import('../icons/networks/NetworkMoonbase'), + NetworkTaiko: () => import('../icons/networks/NetworkTaiko'), NetworkTron: () => import('../icons/networks/NetworkTron'), NetworkArbitrumOne: () => import('../icons/networks/NetworkArbitrumOne'), NetworkBeam: () => import('../icons/networks/NetworkBeam'), diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 02254acf7..1a5b69441 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,13 @@ # @web3icons/utils +## 0.2.8 + +### Patch Changes + +- new networks: taiko, moonbase-alpha, lumio +- Updated dependencies + - @web3icons/common@0.5.0 + ## 0.2.7 ### Patch Changes diff --git a/packages/utils/package.json b/packages/utils/package.json index 2439991fd..47cd42f21 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -29,7 +29,7 @@ }, "sideEffects": false, "dependencies": { - "@web3icons/common": "0.4.1", + "@web3icons/common": "0.5.0", "@inquirer/prompts": "^5.3.2" }, "devDependencies": { @@ -41,5 +41,5 @@ "peerDependencies": { "typescript": "^5.0.0" }, - "version": "0.2.7" + "version": "0.2.8" } diff --git a/packages/utils/src/scripts/gecko/custom-networks.json b/packages/utils/src/scripts/gecko/custom-networks.json index d128ef6d8..e864e83d0 100644 --- a/packages/utils/src/scripts/gecko/custom-networks.json +++ b/packages/utils/src/scripts/gecko/custom-networks.json @@ -216,5 +216,18 @@ "shortname": "uni", "chainId": 130, "nativeCoinId": "eth" + }, + { + "id": "lumio", + "name": "Super Lumio", + "shortname": "lumio", + "chainId": 8866, + "nativeCoinId": "eth" + }, + { + "id": "mooonbase-alpha", + "name": "Moonbase Alpha", + "shortname": "moonbase alpha", + "chainId": 1287 } ] diff --git a/packages/utils/src/scripts/gecko/gecko-coins.json b/packages/utils/src/scripts/gecko/gecko-coins.json index 941f6daaf..9cd276031 100644 --- a/packages/utils/src/scripts/gecko/gecko-coins.json +++ b/packages/utils/src/scripts/gecko/gecko-coins.json @@ -84,11 +84,6 @@ "symbol": "xgn", "name": "0xGen" }, - { - "id": "0xgpu-ai", - "symbol": "0xg", - "name": "0xGPU.ai" - }, { "id": "0x-leverage", "symbol": "oxl", @@ -319,6 +314,11 @@ "symbol": "fit", "name": "300FIT" }, + { + "id": "360noscope420blazeit", + "symbol": "mlg", + "name": "360noscope420blazeit" + }, { "id": "3a-lending-protocol", "symbol": "a3a", @@ -384,6 +384,11 @@ "symbol": "42", "name": "42-coin" }, + { + "id": "47th-potus", + "symbol": "trump47", + "name": "47th POTUS" + }, { "id": "4chan", "symbol": "4chan", @@ -504,6 +509,11 @@ "symbol": "9to5", "name": "9to5io" }, + { + "id": "a16z-ai-dog", + "symbol": "tilly", + "name": "a16z AI Dog" + }, { "id": "a3s", "symbol": "aa", @@ -1319,6 +1329,21 @@ "symbol": "acfi", "name": "Accumulated Finance" }, + { + "id": "accumulated-finance-staked-manta", + "symbol": "stmanta", + "name": "Accumulated Finance Staked MANTA" + }, + { + "id": "accumulated-finance-staked-rose", + "symbol": "strose", + "name": "Accumulated Finance Staked ROSE" + }, + { + "id": "accumulated-finance-staked-zeta", + "symbol": "stzeta", + "name": "Accumulated Finance Staked ZETA" + }, { "id": "acent", "symbol": "ace", @@ -1409,6 +1434,11 @@ "symbol": "acm", "name": "Actinium" }, + { + "id": "act-i-the-ai-prophecy", + "symbol": "act", + "name": "Act I The AI Prophecy" + }, { "id": "acurast", "symbol": "acu", @@ -1639,6 +1669,11 @@ "symbol": "aeg", "name": "Aether Games" }, + { + "id": "aethernet", + "symbol": "aether", + "name": "Aethernet" + }, { "id": "aethir", "symbol": "ath", @@ -1899,6 +1934,11 @@ "symbol": "caw", "name": "A Hunters Dream" }, + { + "id": "ai16z", + "symbol": "ai16z", + "name": "ai16z" + }, { "id": "aiakita", "symbol": "aia", @@ -2454,11 +2494,6 @@ "symbol": "albert", "name": "Albert The Alien" }, - { - "id": "albert-euro-2024", - "symbol": "albert", - "name": "Albert Euro 2024" - }, { "id": "alchemist", "symbol": "mist", @@ -2654,6 +2689,11 @@ "symbol": "tlm", "name": "Alien Worlds" }, + { + "id": "alienxchain", + "symbol": "aix", + "name": "AlienXChain" + }, { "id": "alif-coin", "symbol": "alif", @@ -3659,6 +3699,11 @@ "symbol": "nft", "name": "APENFT" }, + { + "id": "ape-on-apechain", + "symbol": "ape", + "name": "Ape On ApeChain" + }, { "id": "aperture-finance", "symbol": "aptr", @@ -3919,6 +3964,11 @@ "symbol": "aqua", "name": "Aquarius" }, + { + "id": "aquarius-2", + "symbol": "aquarius", + "name": "Aquarius" + }, { "id": "aquarius-loan", "symbol": "ars", @@ -4269,6 +4319,11 @@ "symbol": "argy", "name": "Argy Bargy Token" }, + { + "id": "ari", + "symbol": "ari", + "name": "ARI" + }, { "id": "ari10", "symbol": "ari10", @@ -4284,6 +4339,11 @@ "symbol": "aria20", "name": "Arianee" }, + { + "id": "aries", + "symbol": "aries", + "name": "Aries" + }, { "id": "arise-chikun", "symbol": "chikun", @@ -5249,6 +5309,11 @@ "symbol": "avax", "name": "Avalanche" }, + { + "id": "avalanche-bridged-btc-arbitrum-one", + "symbol": "btc.b", + "name": "Avalanche Bridged BTC (Arbitrum One)" + }, { "id": "avalanche-bridged-dai-avalanche", "symbol": "dai", @@ -5689,6 +5754,11 @@ "symbol": "babybonk", "name": "BabyBonk" }, + { + "id": "babyboomtoken", + "symbol": "bbt", + "name": "BabyBoomToken" + }, { "id": "baby-brett", "symbol": "babybrett", @@ -5799,6 +5869,16 @@ "symbol": "bfloki", "name": "Baby Floki Inu" }, + { + "id": "baby-goat", + "symbol": "babygoat", + "name": "Baby Goat" + }, + { + "id": "baby-goatseus-maximus", + "symbol": "babygoat", + "name": "Baby Goatseus Maximus" + }, { "id": "baby-grok", "symbol": "babygrok", @@ -5819,6 +5899,11 @@ "symbol": "babyhamster", "name": "Baby Hamster" }, + { + "id": "baby-hippo", + "symbol": "babyhippo", + "name": "BABY HIPPO" + }, { "id": "babykitty", "symbol": "babykitty", @@ -5839,6 +5924,11 @@ "symbol": "blovely", "name": "Baby Lovely Inu" }, + { + "id": "babymarvin-inu", + "symbol": "babymarvin", + "name": "BabyMarvin Inu" + }, { "id": "baby-meme-coin", "symbol": "babymeme", @@ -6634,6 +6724,11 @@ "symbol": "bario", "name": "Based Bario" }, + { + "id": "based-beast-coin", + "symbol": "beast", + "name": "Based Beast Coin" + }, { "id": "based-bober", "symbol": "bober", @@ -7119,6 +7214,11 @@ "symbol": "bear", "name": "Bear" }, + { + "id": "bear-3", + "symbol": "bear", + "name": "BEAR" + }, { "id": "bearcoin", "symbol": "bear", @@ -7239,11 +7339,6 @@ "symbol": "frog", "name": "Beer Frog" }, - { - "id": "beer-money", - "symbol": "beer", - "name": "Beer Money" - }, { "id": "beethoven-x", "symbol": "beets", @@ -7324,11 +7419,6 @@ "symbol": "bel", "name": "Bella Protocol" }, - { - "id": "bellcoin", - "symbol": "bell", - "name": "Bellcoin" - }, { "id": "bell-curve-money", "symbol": "bell", @@ -7519,6 +7609,11 @@ "symbol": "bsk-baa025", "name": "Beskar" }, + { + "id": "beta-chain-ccolosseum-phoenix", + "symbol": "bccp", + "name": "Beta Chain Ccolosseum Phoenix" + }, { "id": "beta-finance", "symbol": "beta", @@ -7589,11 +7684,6 @@ "symbol": "bff", "name": "BetterFan" }, - { - "id": "better-fan", - "symbol": "btb", - "name": "Better Fan" - }, { "id": "betterment-digital", "symbol": "bemd", @@ -8442,7 +8532,7 @@ { "id": "bitcoin-avalanche-bridged-btc-b", "symbol": "btc.b", - "name": "Bitcoin Avalanche Bridged (BTC.b)" + "name": "Avalanche Bridged BTC (Avalanche)" }, { "id": "bitcoinbam", @@ -8574,11 +8664,6 @@ "symbol": "xbtx", "name": "Bitcoin Subsidium" }, - { - "id": "bitcoin-ton", - "symbol": "bitton", - "name": "Bitcoin TON" - }, { "id": "bitcoin-trc20", "symbol": "btct", @@ -8837,6 +8922,11 @@ { "id": "bitstarters", "symbol": "bits", + "name": "BitStarters [Old]" + }, + { + "id": "bitstarters-2", + "symbol": "bits", "name": "BitStarters" }, { @@ -8969,11 +9059,6 @@ "symbol": "jack", "name": "Blackjack.fun" }, - { - "id": "blacklatexfist", - "symbol": "blf", - "name": "BlackLatexFist" - }, { "id": "black-panther-fi", "symbol": "black", @@ -9019,11 +9104,6 @@ "symbol": "swan", "name": "Black Swan" }, - { - "id": "black-token", - "symbol": "black", - "name": "Black Token" - }, { "id": "blacky", "symbol": "blacky", @@ -9074,11 +9154,6 @@ "symbol": "bcat", "name": "BlastCat" }, - { - "id": "blastdex", - "symbol": "bd", - "name": "BlastDEX" - }, { "id": "blaster", "symbol": "blstr", @@ -9329,6 +9404,11 @@ "symbol": "bgpt", "name": "BlockGPT" }, + { + "id": "blockinsightai", + "symbol": "biai", + "name": "BlockInsightAI" + }, { "id": "blockless", "symbol": "bls", @@ -9354,11 +9434,6 @@ "symbol": "bro$", "name": "BlockRock" }, - { - "id": "blocks", - "symbol": "blocks", - "name": "BLOCKS" - }, { "id": "blocksmith-labs-forge", "symbol": "$forge", @@ -9459,6 +9534,11 @@ "symbol": "bloom", "name": "Bloomer" }, + { + "id": "bloop-furpal", + "symbol": "bloop", + "name": "Bloop Furpal" + }, { "id": "blox", "symbol": "cdt", @@ -9519,6 +9599,11 @@ "symbol": "blue", "name": "Blue" }, + { + "id": "blue-3", + "symbol": "blue", + "name": "Blue" + }, { "id": "blueart", "symbol": "bla", @@ -9849,6 +9934,11 @@ "symbol": "bober", "name": "BOBER" }, + { + "id": "bob-network-bridged-usdt-bob-network", + "symbol": "usdt", + "name": "BOB Network Bridged USDT (BOB Network)" + }, { "id": "bobo", "symbol": "bobo", @@ -10194,11 +10284,6 @@ "symbol": "bonsai", "name": "Bonsai Token" }, - { - "id": "bontecoin", - "symbol": "bonte", - "name": "Bontecoin" - }, { "id": "bonusblock", "symbol": "bonus", @@ -10279,6 +10364,11 @@ "symbol": "booe", "name": "Book of Ethereum" }, + { + "id": "book-of-lies", + "symbol": "bol", + "name": "Book of Lies" + }, { "id": "book-of-meme", "symbol": "bome", @@ -10344,6 +10434,11 @@ "symbol": "boosey", "name": "BOOSEY" }, + { + "id": "booshi", + "symbol": "booshi", + "name": "Booshi" + }, { "id": "boost", "symbol": "boost", @@ -10599,11 +10694,6 @@ "symbol": "b-dao", "name": "Box-DAO" }, - { - "id": "boxydude", - "symbol": "box", - "name": "BoxyDude" - }, { "id": "boysclub", "symbol": "boysclub", @@ -10627,7 +10717,7 @@ { "id": "bozo-hybrid", "symbol": "bozo", - "name": "bozo Hybrid" + "name": "Bozo Benk" }, { "id": "bpinky", @@ -10804,6 +10894,11 @@ "symbol": "brex", "name": "BREX" }, + { + "id": "brian", + "symbol": "brian", + "name": "Brian" + }, { "id": "brianarmstrongtrumpyellen", "symbol": "coin", @@ -11169,6 +11264,11 @@ "symbol": "weth", "name": "Bridged WETH" }, + { + "id": "bridged-wrapped-bitcoin-bob-network", + "symbol": "wbtc", + "name": "Bridged Wrapped Bitcoin (BOB Network)" + }, { "id": "bridged-wrapped-bitcoin-hashport", "symbol": "wbtc[hts]", @@ -11199,6 +11299,11 @@ "symbol": "jwbtc", "name": "Bridged Wrapped Bitcoin (TON Bridge)" }, + { + "id": "bridged-wrapped-bitcoin-worldchain", + "symbol": "wbtc", + "name": "Bridged Wrapped Bitcoin (Worldchain)" + }, { "id": "bridged-wrapped-btc-bevm", "symbol": "wbtc", @@ -11209,6 +11314,11 @@ "symbol": "wbtc.e", "name": "Bridged Wrapped BTC (Lightlink)" }, + { + "id": "bridged-wrapped-ethereum-bob-network", + "symbol": "weth", + "name": "Bridged Wrapped Ethereum (BOB Network)" + }, { "id": "bridged-wrapped-ether-fuse", "symbol": "weth", @@ -11474,11 +11584,6 @@ "symbol": "btc2x-fli", "name": "BTC 2x Flexible Leverage Index" }, - { - "id": "btcmeme", - "symbol": "btcmeme", - "name": "BTCMEME" - }, { "id": "btc-proxy", "symbol": "btcpx", @@ -11542,6 +11647,11 @@ { "id": "bubcat-2", "symbol": "bub", + "name": "BUBCAT [OLD]" + }, + { + "id": "bubcat-3", + "symbol": "bub", "name": "BUBCAT" }, { @@ -11574,6 +11684,11 @@ "symbol": "buddy", "name": "BUDDY" }, + { + "id": "buddy-3", + "symbol": "buddy", + "name": "Buddy" + }, { "id": "buddyai", "symbol": "buddy", @@ -11889,6 +12004,11 @@ "symbol": "tmsh", "name": "Bursaspor Fan Token" }, + { + "id": "burt", + "symbol": "burt", + "name": "Burt" + }, { "id": "busy-dao", "symbol": "busy", @@ -12079,21 +12199,11 @@ "symbol": "cad", "name": "Cadence Protocol" }, - { - "id": "cadinu-bonus", - "symbol": "cbon", - "name": "CADINU Bonus" - }, { "id": "cadog", "symbol": "cdg", "name": "cadog" }, - { - "id": "caduceus", - "symbol": "cmp", - "name": "Caduceus" - }, { "id": "caduceus-protocol", "symbol": "cad", @@ -12244,6 +12354,11 @@ "symbol": "cnr", "name": "Canary" }, + { + "id": "cancer", + "symbol": "cancer", + "name": "Cancer" + }, { "id": "candide-coin", "symbol": "ccc", @@ -12339,6 +12454,11 @@ "symbol": "cwr", "name": "Capo Was Right" }, + { + "id": "capricorn-2", + "symbol": "capricorn", + "name": "Capricorn" + }, { "id": "caprisun", "symbol": "csun", @@ -12569,11 +12689,6 @@ "symbol": "cspd", "name": "CasperPad" }, - { - "id": "cassie-dragon", - "symbol": "cassie 🐉", - "name": "Cassie Dragon" - }, { "id": "castello-coin", "symbol": "cast", @@ -12604,16 +12719,31 @@ "symbol": "cata", "name": "Catamoto" }, + { + "id": "catana", + "symbol": "catana", + "name": "Catana" + }, { "id": "catapult", "symbol": "atd", "name": "A2DAO" }, + { + "id": "catbal", + "symbol": "$catbal", + "name": "Catbal" + }, { "id": "catbonk", "symbol": "cabo", "name": "Catbonk" }, + { + "id": "catbox", + "symbol": "catbox", + "name": "CatBox" + }, { "id": "catboy-3", "symbol": "catboy", @@ -12724,6 +12854,11 @@ "symbol": "catgirl", "name": "Catgirl" }, + { + "id": "cat-girl", + "symbol": "catgf", + "name": "cat girl" + }, { "id": "catgpt", "symbol": "catgpt", @@ -13169,11 +13304,6 @@ "symbol": "cel", "name": "Celsius Network" }, - { - "id": "celsiusx-wrapped-eth", - "symbol": "cxeth", - "name": "CelsiusX Wrapped ETH" - }, { "id": "censored-ai", "symbol": "cens", @@ -13319,6 +13449,11 @@ "symbol": "chad", "name": "Chad Frog" }, + { + "id": "chadgpt", + "symbol": "giga", + "name": "ChadGPT" + }, { "id": "chadimir-putni", "symbol": "putni", @@ -13364,6 +13499,11 @@ "symbol": "chaincade", "name": "ChainCade" }, + { + "id": "chainccolosseumphoenix", + "symbol": "ccp", + "name": "Chain Colosseum Phoenix" + }, { "id": "chain-crisis", "symbol": "crisis", @@ -13554,6 +13694,11 @@ "symbol": "can", "name": "Channels" }, + { + "id": "chaos-and-disorder", + "symbol": "chaos", + "name": "chaos and disorder" + }, { "id": "chappie", "symbol": "chap", @@ -14389,11 +14534,6 @@ "symbol": "clash", "name": "Clashub" }, - { - "id": "classicbitcoin", - "symbol": "cbtc", - "name": "ClassicBitcoin" - }, { "id": "classic-usd", "symbol": "usc", @@ -14504,11 +14644,6 @@ "symbol": "clapt", "name": "Cloned Aptos" }, - { - "id": "cloned-bnb", - "symbol": "clbnb", - "name": "Cloned BNB" - }, { "id": "clore-ai", "symbol": "clore", @@ -14754,6 +14889,11 @@ "symbol": "coffee", "name": "Coffee" }, + { + "id": "coffee-2", + "symbol": "cofe", + "name": "COFFEE" + }, { "id": "coffee-club-token", "symbol": "coffee", @@ -14904,11 +15044,6 @@ "symbol": "chb", "name": "COINHUB" }, - { - "id": "coin-in-meme-world", - "symbol": "comew", - "name": "Coin In Meme World" - }, { "id": "coinloan", "symbol": "clt", @@ -14929,11 +15064,6 @@ "symbol": "cex", "name": "Coinmart Finance" }, - { - "id": "coinmerge-os", - "symbol": "cmos", - "name": "CoinMerge OS" - }, { "id": "coinmetro", "symbol": "xcm", @@ -15099,11 +15229,6 @@ "symbol": "colx", "name": "ColossusXT" }, - { - "id": "colr-coin", - "symbol": "$colr", - "name": "colR Coin" - }, { "id": "coma-online", "symbol": "coma", @@ -15114,6 +15239,11 @@ "symbol": "cmdx", "name": "COMDEX" }, + { + "id": "comedian", + "symbol": "ban", + "name": "Comedian" + }, { "id": "comet-token", "symbol": "comet", @@ -15939,6 +16069,11 @@ "symbol": "cpiggy", "name": "cPIGGY Bank Token" }, + { + "id": "cpi-token", + "symbol": "cpi", + "name": "CPI Token" + }, { "id": "cpucoin", "symbol": "cpu", @@ -16424,6 +16559,11 @@ "symbol": "crow", "name": "Crow" }, + { + "id": "crow-2", + "symbol": "crow", + "name": "CROW" + }, { "id": "crowdswap", "symbol": "crowd", @@ -16604,11 +16744,6 @@ "symbol": "caga", "name": "Crypto Asset Governance Alliance" }, - { - "id": "crypto-bet", - "symbol": "$cbet", - "name": "CosaBet" - }, { "id": "cryptoblades", "symbol": "skill", @@ -17124,6 +17259,11 @@ "symbol": "cgt", "name": "Curio Gas Token" }, + { + "id": "curly", + "symbol": "curly", + "name": "Curly" + }, { "id": "curtis", "symbol": "curtis", @@ -17194,11 +17334,6 @@ "symbol": "core", "name": "cVault.finance" }, - { - "id": "cvip", - "symbol": "cvip", - "name": "CVIP" - }, { "id": "cv-pad", "symbol": "cvpad", @@ -17239,11 +17374,6 @@ "symbol": "cdog", "name": "Cyber Dog" }, - { - "id": "cyber-doge-2", - "symbol": "cdoge", - "name": "Cyber Doge" - }, { "id": "cyberdoge-2", "symbol": "cydoge", @@ -17364,6 +17494,11 @@ "symbol": "cp", "name": "Cypress" }, + { + "id": "cyrus", + "symbol": "crs", + "name": "CYRUS" + }, { "id": "czolana", "symbol": "czol", @@ -17944,6 +18079,11 @@ "symbol": "dca", "name": "DCA420 Meme Index" }, + { + "id": "dchef", + "symbol": "dchefsol", + "name": "DChef" + }, { "id": "dcntrl-network", "symbol": "dcnx", @@ -18099,6 +18239,11 @@ "symbol": "detf", "name": "Decentralized ETF" }, + { + "id": "decentralized-finance", + "symbol": "dcf", + "name": "Decentralized Finance" + }, { "id": "decentralized-mining-exchange", "symbol": "dmc", @@ -18294,6 +18439,11 @@ "symbol": "deepai", "name": "Deep Whales AI" }, + { + "id": "deep-worm", + "symbol": "worm", + "name": "Deep Worm" + }, { "id": "deesse", "symbol": "love", @@ -18534,11 +18684,6 @@ "symbol": "defy", "name": "DEFY" }, - { - "id": "dega", - "symbol": "dega", - "name": "Dega" - }, { "id": "dega-2", "symbol": "dega", @@ -18869,6 +19014,11 @@ "symbol": "depay", "name": "DePay" }, + { + "id": "depicted", + "symbol": "dpt", + "name": "Depicted" + }, { "id": "depin-dao", "symbol": "depindao", @@ -19022,7 +19172,7 @@ { "id": "devin-on-solana", "symbol": "devin", - "name": "Devin on Solana" + "name": "Devin" }, { "id": "dev-is-fish", @@ -19119,6 +19269,11 @@ "symbol": "hunt", "name": "Dexhunter" }, + { + "id": "dexie-bucks", + "symbol": "dbx", + "name": "dexie bucks" + }, { "id": "dexioprotocol-v2", "symbol": "dexio", @@ -19209,11 +19364,6 @@ "symbol": "dxc", "name": "Dex-Trade Coin" }, - { - "id": "dextro", - "symbol": "dxo", - "name": "Dextro" - }, { "id": "dez", "symbol": "dez", @@ -19724,11 +19874,6 @@ "symbol": "dione", "name": "Dione" }, - { - "id": "diqinu", - "symbol": "diq", - "name": "DIQINU" - }, { "id": "dirty-street-cats", "symbol": "dirty", @@ -19849,6 +19994,11 @@ "symbol": "dmail", "name": "Dmail Network" }, + { + "id": "dmarketplace", + "symbol": "$dmp", + "name": "Dmarketplace" + }, { "id": "dmx", "symbol": "dmx", @@ -19879,11 +20029,6 @@ "symbol": "dcct", "name": "DocuChain" }, - { - "id": "documentchain", - "symbol": "dms", - "name": "Documentchain" - }, { "id": "dodo", "symbol": "dodo", @@ -20529,11 +20674,6 @@ "symbol": "dogy", "name": "Dogy" }, - { - "id": "dogyrace", - "symbol": "dor", - "name": "DogyRace" - }, { "id": "dogz", "symbol": "dogz", @@ -20684,11 +20824,6 @@ "symbol": "dona", "name": "Donaswap" }, - { - "id": "don-catblueone", - "symbol": "doncat", - "name": "Don Catblueone" - }, { "id": "don-don-donki", "symbol": "donki", @@ -20754,6 +20889,11 @@ "symbol": "dbi", "name": "Don't Buy Inu" }, + { + "id": "dont-coin", + "symbol": "dont", + "name": "DONT coin" + }, { "id": "don-t-sell-your-bitcoin", "symbol": "bitcoin", @@ -20964,11 +21104,6 @@ "symbol": "rating", "name": "DPRating" }, - { - "id": "dps-doubloon-2", - "symbol": "dbl", - "name": "DPS Doubloon" - }, { "id": "dracarys-token", "symbol": "dra", @@ -21129,6 +21264,11 @@ "symbol": "joy", "name": "Drawshop Kingdom Reverse Joystick" }, + { + "id": "dream-machine", + "symbol": "$dream", + "name": "Dream machine" + }, { "id": "dream-machine-token", "symbol": "dmt", @@ -21139,11 +21279,6 @@ "symbol": "dpliq", "name": "Dream Play Liquidity Medallion" }, - { - "id": "dreamscoin", - "symbol": "dream", - "name": "DreamsCoin" - }, { "id": "dreams-quest", "symbol": "dreams", @@ -21339,6 +21474,11 @@ "symbol": "ducx", "name": "DucatusX" }, + { + "id": "duck-ai", + "symbol": "duckai", + "name": "Duck AI" + }, { "id": "duckcoin", "symbol": "duck", @@ -21659,11 +21799,6 @@ "symbol": "dyp", "name": "Dypius" }, - { - "id": "dystopia", - "symbol": "dyst", - "name": "Dystopia" - }, { "id": "dystoworld-ai", "symbol": "dysto", @@ -22899,6 +23034,11 @@ "symbol": "epep", "name": "Epep" }, + { + "id": "epic-ballad-coin", + "symbol": "ebc", + "name": "Epic Ballad Coin" + }, { "id": "epicbots", "symbol": "epic", @@ -23444,11 +23584,6 @@ "symbol": "weeths", "name": "ether.fi weETHs" }, - { - "id": "ethergem", - "symbol": "egem", - "name": "EtherGem" - }, { "id": "etherisc", "symbol": "dip", @@ -23779,6 +23914,11 @@ "symbol": "efc", "name": "Everton Fan Token" }, + { + "id": "evervalue-coin", + "symbol": "eva", + "name": "EverValue Coin" + }, { "id": "everybody", "symbol": "hold", @@ -23949,11 +24089,6 @@ "symbol": "sama", "name": "Moonsama" }, - { - "id": "expanse", - "symbol": "exp", - "name": "Expanse" - }, { "id": "experience-chain", "symbol": "xpc", @@ -23994,6 +24129,11 @@ "symbol": "xyn", "name": "Exynos Protocol" }, + { + "id": "eye-am-watching-you", + "symbol": "eye", + "name": "EYE Am Watching You" + }, { "id": "eyebot", "symbol": "eyebot", @@ -24099,11 +24239,6 @@ "symbol": "ferc", "name": "FairERC20" }, - { - "id": "fairex", - "symbol": "frx", - "name": "FairEx" - }, { "id": "fairfun", "symbol": "fair", @@ -24259,11 +24394,6 @@ "symbol": "eco", "name": "Fantom Eco" }, - { - "id": "fantomgo", - "symbol": "ftg", - "name": "OnGo" - }, { "id": "fantom-libero-financial", "symbol": "flibero", @@ -24764,6 +24894,11 @@ "symbol": "fai", "name": "FIGURE AI" }, + { + "id": "fiji-exe", + "symbol": "fiji", + "name": "FIJI.EXE" + }, { "id": "filecoin", "symbol": "fil", @@ -24829,6 +24964,11 @@ "symbol": "fnct", "name": "Financie Token" }, + { + "id": "finanx-ai", + "symbol": "fnxai", + "name": "Finanx AI" + }, { "id": "finblox", "symbol": "fbx", @@ -24964,6 +25104,11 @@ "symbol": "first", "name": "FIRST" }, + { + "id": "first-ai-1951", + "symbol": "snarc", + "name": "First AI (1951)" + }, { "id": "first-digital-usd", "symbol": "fdusd", @@ -25184,6 +25329,11 @@ "symbol": "qube", "name": "FlatQube" }, + { + "id": "flavia-is-online", + "symbol": "flavia", + "name": "Flavia Is Online" + }, { "id": "flayer", "symbol": "flay", @@ -25749,6 +25899,11 @@ "symbol": "fore", "name": "FORE Protocol" }, + { + "id": "forest", + "symbol": "forest", + "name": "FOREST" + }, { "id": "forest-knight", "symbol": "knight", @@ -25884,6 +26039,11 @@ "symbol": "fox", "name": "Foxify" }, + { + "id": "foxpool", + "symbol": "fox2", + "name": "FoxPool" + }, { "id": "foxsy-ai", "symbol": "foxsy", @@ -26059,6 +26219,11 @@ "symbol": "fdm", "name": "Freedom" }, + { + "id": "freedom-3", + "symbol": "freedom", + "name": "FREEDOM" + }, { "id": "freedomcoin", "symbol": "freed", @@ -26239,6 +26404,11 @@ "symbol": "frog", "name": "Frogonsol" }, + { + "id": "frogs", + "symbol": "$frogs", + "name": "Frogs" + }, { "id": "frogswap", "symbol": "frog", @@ -26474,11 +26644,6 @@ "symbol": "fung", "name": "Fungify Token" }, - { - "id": "funny-coin", - "symbol": "fuc", - "name": "Funny Coin" - }, { "id": "furari", "symbol": "cia", @@ -26809,6 +26974,11 @@ "symbol": "game", "name": "GameBuild" }, + { + "id": "game-by-virtuals", + "symbol": "game", + "name": "GAME by Virtuals" + }, { "id": "game-changer", "symbol": "gach", @@ -27014,6 +27184,11 @@ "symbol": "gg", "name": "GameX" }, + { + "id": "gamext", + "symbol": "gmx", + "name": "GameXT" + }, { "id": "gamezone", "symbol": "gzone", @@ -27209,6 +27384,11 @@ "symbol": "gcr", "name": "GCRClassic" }, + { + "id": "gdog", + "symbol": "gdog", + "name": "GDOG" + }, { "id": "gear-2", "symbol": "gea", @@ -27345,9 +27525,9 @@ "name": "GemHUB" }, { - "id": "gemie", - "symbol": "gem", - "name": "Gemie" + "id": "gemini-2", + "symbol": "gemini", + "name": "Gemini" }, { "id": "gemini-dollar", @@ -27499,11 +27679,6 @@ "symbol": "iux", "name": "GeniuX" }, - { - "id": "genix", - "symbol": "genix", - "name": "Genix" - }, { "id": "genomefi", "symbol": "geno", @@ -27584,11 +27759,6 @@ "symbol": "geo$", "name": "Geopoly" }, - { - "id": "germain-le-lynx-mascot-ps", - "symbol": "germain", - "name": "Germain le Lynx Mascot PSG" - }, { "id": "germany-coin", "symbol": "ger", @@ -27659,6 +27829,11 @@ "symbol": "gho", "name": "GHO" }, + { + "id": "ghoad", + "symbol": "ghoad", + "name": "GHOAD" + }, { "id": "ghost-by-mcafee", "symbol": "ghost", @@ -28009,11 +28184,6 @@ "symbol": "bee", "name": "Globees" }, - { - "id": "globel-community", - "symbol": "gc", - "name": "Globel Community" - }, { "id": "globiance-exchange", "symbol": "gbex", @@ -28229,6 +28399,11 @@ "symbol": "goa", "name": "Goat Protocol" }, + { + "id": "goatse", + "symbol": "goatse", + "name": "GOATSE" + }, { "id": "goatseus-maximus", "symbol": "goat", @@ -28239,6 +28414,11 @@ "symbol": "goat", "name": "Goatseus Maximus" }, + { + "id": "goatseus-poppimus", + "symbol": "popgoat", + "name": "Goatseus Poppimus" + }, { "id": "goat-trading", "symbol": "goat", @@ -28454,6 +28634,11 @@ "symbol": "gold", "name": "GoldenBoys" }, + { + "id": "goldencat", + "symbol": "cats", + "name": "GoldenCat" + }, { "id": "golden-celestial-ratio", "symbol": "gcr", @@ -28814,11 +28999,6 @@ "symbol": "gwgw", "name": "GoWrap" }, - { - "id": "goya-giant-token", - "symbol": "artg", - "name": "Goya Giant" - }, { "id": "goztepe-s-k-fan-token", "symbol": "goz", @@ -28844,6 +29024,11 @@ "symbol": "gptv", "name": "GPTVerse" }, + { + "id": "gpt-wars", + "symbol": "gptw", + "name": "GPT Wars" + }, { "id": "gpubot", "symbol": "gpubot", @@ -28964,11 +29149,6 @@ "symbol": "grve", "name": "Grave" }, - { - "id": "graviocoin", - "symbol": "gio", - "name": "Graviocoin" - }, { "id": "gravitas", "symbol": "gravitas", @@ -29784,11 +29964,6 @@ "symbol": "hmstr", "name": "Hamster Kombat" }, - { - "id": "hamsters", - "symbol": "hams", - "name": "Hamsters" - }, { "id": "hamster-wif-hat", "symbol": "wif", @@ -29804,6 +29979,11 @@ "symbol": "hanabi", "name": "Hanabi-chan" }, + { + "id": "hanbao", + "symbol": "hanbao", + "name": "Hanbao" + }, { "id": "hanchain", "symbol": "han", @@ -30039,6 +30219,11 @@ "symbol": "hash", "name": "HashMind" }, + { + "id": "hashnote-usyc", + "symbol": "usyc", + "name": "Hashnote USYC" + }, { "id": "hashpack", "symbol": "pack", @@ -30119,11 +30304,6 @@ "symbol": "hvh", "name": "HAVAH" }, - { - "id": "have-fun-598a6209-8136-4282-a14c-1f2b2b5d0c26", - "symbol": "hf", - "name": "Have Fun Token" - }, { "id": "haven", "symbol": "xhv", @@ -30229,6 +30409,11 @@ "symbol": "hec", "name": "Hector Network" }, + { + "id": "hedera-guild-game", + "symbol": "hgg", + "name": "Hedera Guild Game" + }, { "id": "hedera-hashgraph", "symbol": "hbar", @@ -30429,6 +30614,11 @@ "symbol": "helmet", "name": "Helmet Insure" }, + { + "id": "help", + "symbol": "help", + "name": "Help" + }, { "id": "helpkidz-coin", "symbol": "hkc", @@ -30454,11 +30644,6 @@ "symbol": "hemule", "name": "Hemule" }, - { - "id": "heptafranc", - "symbol": "hptf", - "name": "HEPTAFRANC" - }, { "id": "hepton", "symbol": "hte", @@ -30914,11 +31099,6 @@ "symbol": "$hokk", "name": "Hokkaidu Inu" }, - { - "id": "hokkaido-inu-30bdfab6-dfb9-4fc0-b3c3-02bffe162ee4", - "symbol": "hoka", - "name": "Hokkaido Inu" - }, { "id": "hokkaido-inu-token", "symbol": "hinu", @@ -31124,6 +31304,11 @@ "symbol": "hoot", "name": "Hootchain" }, + { + "id": "hoot-solana", + "symbol": "hoot", + "name": "HOOT Solana" + }, { "id": "hope-2", "symbol": "hope", @@ -32484,6 +32669,11 @@ "symbol": "infi", "name": "Infinimos" }, + { + "id": "infinitar-governance-token", + "symbol": "igt", + "name": "Infinitar Governance Token" + }, { "id": "infinite-2", "symbol": "infi", @@ -32769,6 +32959,11 @@ "symbol": "insur", "name": "InsurAce" }, + { + "id": "insurance-2", + "symbol": "insurance", + "name": "INSURANCE" + }, { "id": "insure", "symbol": "sure", @@ -32854,6 +33049,11 @@ "symbol": "inter", "name": "Inter Milan Fan Token" }, + { + "id": "international-klein-blue", + "symbol": "ikb", + "name": "International Klein Blue" + }, { "id": "international-stable-currency", "symbol": "isc", @@ -33064,6 +33264,11 @@ "symbol": "iota", "name": "IOTA" }, + { + "id": "iota-velocimeter", + "symbol": "ivm", + "name": "Iota Velocimeter" + }, { "id": "iotec-finance", "symbol": "iot", @@ -33534,6 +33739,11 @@ "symbol": "jade", "name": "DeFi Kingdoms Jade" }, + { + "id": "jade-city-token", + "symbol": "jct", + "name": "Jade City Token" + }, { "id": "jade-currency", "symbol": "jade", @@ -33569,6 +33779,11 @@ "symbol": "jala", "name": "Jalapeno Finance" }, + { + "id": "janet", + "symbol": "janet", + "name": "Janet" + }, { "id": "jani", "symbol": "jani", @@ -34194,11 +34409,6 @@ "symbol": "juno", "name": "JUNO" }, - { - "id": "jupbot", - "symbol": "jupbot", - "name": "JupBot" - }, { "id": "jupiter", "symbol": "jup", @@ -34494,6 +34704,11 @@ "symbol": "klc", "name": "KalyChain" }, + { + "id": "kamabla", + "symbol": "kamabla", + "name": "Kamabla" + }, { "id": "kamala-horris", "symbol": "kama", @@ -34549,6 +34764,11 @@ "symbol": "$roo", "name": "Kangaroo the Jumping Co​in" }, + { + "id": "kango", + "symbol": "kango", + "name": "KANGO" + }, { "id": "kanye", "symbol": "ye", @@ -34594,6 +34814,11 @@ "symbol": "karate", "name": "Karate Combat" }, + { + "id": "karat-galaxy", + "symbol": "karat", + "name": "KARAT Galaxy" + }, { "id": "karbo", "symbol": "krb", @@ -34664,6 +34889,11 @@ "symbol": "kmn", "name": "KASPAMINING" }, + { + "id": "kaspaw", + "symbol": "kpaw", + "name": "KasPaw" + }, { "id": "kasper", "symbol": "kasper", @@ -34799,6 +35029,11 @@ "symbol": "kek", "name": "Kekcoin (ETH)" }, + { + "id": "keke", + "symbol": "keke", + "name": "Keke" + }, { "id": "keke-inu", "symbol": "keke", @@ -34884,6 +35119,11 @@ "symbol": "kendu", "name": "Kendu Inu" }, + { + "id": "kendu-inu-2", + "symbol": "kendu", + "name": "Kendu Inu" + }, { "id": "kenka-metaverse", "symbol": "kenka", @@ -35087,7 +35327,7 @@ { "id": "kima", "symbol": "kima", - "name": "Kima" + "name": "Kima Network" }, { "id": "kimbo", @@ -35219,6 +35459,11 @@ "symbol": "kinggrok", "name": "King Grok" }, + { + "id": "king-neiro", + "symbol": "kingneiro", + "name": "King Neiro" + }, { "id": "king-of-evolution", "symbol": "koe", @@ -35374,6 +35619,11 @@ "symbol": "kittenwif", "name": "KittenWifHat" }, + { + "id": "kitten-wif-hat", + "symbol": "kwif", + "name": "Kitten Wif Hat" + }, { "id": "kitti", "symbol": "kitti", @@ -35764,6 +36014,11 @@ "symbol": "kot", "name": "kotia" }, + { + "id": "koto-2", + "symbol": "koto", + "name": "Koto" + }, { "id": "koubek", "symbol": "kbk", @@ -35919,11 +36174,6 @@ "symbol": "kgc", "name": "Krypton Galaxy Coin" }, - { - "id": "kryxivia-game", - "symbol": "kxa", - "name": "Kryxivia Game" - }, { "id": "kryza-exchange", "symbol": "krx", @@ -36029,6 +36279,11 @@ "symbol": "kunci", "name": "Kunci Coin" }, + { + "id": "kundalini-is-a-real-girl", + "symbol": "kundalini", + "name": "Kundalini is a real girl" + }, { "id": "kung-fucat", "symbol": "kfucat", @@ -36139,6 +36394,11 @@ "symbol": "kswap", "name": "KyotoSwap" }, + { + "id": "kyra", + "symbol": "kyra", + "name": "KYRA" + }, { "id": "kyrrex", "symbol": "krrx", @@ -36154,11 +36414,6 @@ "symbol": "kyve", "name": "KYVE Network" }, - { - "id": "kzcash", - "symbol": "kzc", - "name": "Kzcash" - }, { "id": "kz-token", "symbol": "kz", @@ -36454,6 +36709,11 @@ "symbol": "larix", "name": "Larix" }, + { + "id": "larpai", + "symbol": "larpai", + "name": "LarpAI" + }, { "id": "larry", "symbol": "larry", @@ -36609,6 +36869,11 @@ "symbol": "lzusdt", "name": "LayerZero Bridged USDT (Etherlink)" }, + { + "id": "layerzero-bridged-wbtc-aptos", + "symbol": "zwbtc", + "name": "LayerZero Bridged WBTC (Aptos)" + }, { "id": "layerzero-bridged-weth-aptos", "symbol": "weth", @@ -36869,6 +37134,11 @@ "symbol": "( ͡° ͜ʖ ͡°)", "name": "Lenny Face" }, + { + "id": "leo-2", + "symbol": "leo", + "name": "Leo" + }, { "id": "leoavax", "symbol": "leo", @@ -37109,6 +37379,11 @@ "symbol": "libra", "name": "0L Network" }, + { + "id": "libra-4", + "symbol": "libra", + "name": "Libra" + }, { "id": "libra-credit", "symbol": "lba", @@ -37124,11 +37399,6 @@ "symbol": "lbr", "name": "Libra Protocol" }, - { - "id": "libra-protocol-2", - "symbol": "libra", - "name": "Libra Protocol" - }, { "id": "libre", "symbol": "libre", @@ -37304,6 +37574,11 @@ "symbol": "lilpump", "name": "Lil Pump" }, + { + "id": "lily-s-coin", + "symbol": "$lily", + "name": "Lily's Coin" + }, { "id": "lime-cat", "symbol": "lime", @@ -38007,6 +38282,11 @@ { "id": "lolcat", "symbol": "cats", + "name": "Lolcat [OLD]" + }, + { + "id": "lolcat-2", + "symbol": "lolcat", "name": "Lolcat" }, { @@ -38204,6 +38484,11 @@ "symbol": "lords", "name": "LORDS" }, + { + "id": "lorenzo-stbtc", + "symbol": "stbtc", + "name": "Lorenzo stBTC" + }, { "id": "lormhole", "symbol": "l", @@ -38244,6 +38529,11 @@ "symbol": "lotty", "name": "Lotty" }, + { + "id": "lotus", + "symbol": "lotus", + "name": "LOTUS" + }, { "id": "louder", "symbol": "louder", @@ -38349,6 +38639,11 @@ "symbol": "lp-ycrv", "name": "LP Yearn CRV Vault" }, + { + "id": "lrt-squared", + "symbol": "lrt2", + "name": "LRT Squared" + }, { "id": "lsdx-finance", "symbol": "lsd", @@ -38409,6 +38704,11 @@ "symbol": "lblock", "name": "Lucky Block" }, + { + "id": "luckycoin", + "symbol": "lky", + "name": "Luckycoin" + }, { "id": "lucky-coin", "symbol": "lucky", @@ -39194,6 +39494,11 @@ "symbol": "mag", "name": "Magnetic" }, + { + "id": "magnificent-7777", + "symbol": "magic", + "name": "Magnificent 7777" + }, { "id": "magnify-cash", "symbol": "mag", @@ -39324,11 +39629,6 @@ "symbol": "mimatic", "name": "MAI (Optimism)" }, - { - "id": "mai-solana", - "symbol": "mimatic", - "name": "MAI (Solana)" - }, { "id": "majin", "symbol": "majin", @@ -39564,6 +39864,11 @@ "symbol": "minu", "name": "Mantle Inu" }, + { + "id": "mantle-restaked-eth", + "symbol": "cmeth", + "name": "Mantle Restaked ETH" + }, { "id": "mantle-staked-ether", "symbol": "meth", @@ -39599,11 +39904,6 @@ "symbol": "mpl", "name": "Maple" }, - { - "id": "map-node", - "symbol": "mni", - "name": "Map Node" - }, { "id": "mapped-usdt", "symbol": "usdt", @@ -39679,6 +39979,11 @@ "symbol": "mogul", "name": "Marine Moguls" }, + { + "id": "market-dominance", + "symbol": "md", + "name": "Market Dominance" + }, { "id": "market-making-pro", "symbol": "mmpro", @@ -39924,11 +40229,6 @@ "symbol": "mom", "name": "Masters Of The Memes" }, - { - "id": "masterwin", - "symbol": "mw", - "name": "MasterWin" - }, { "id": "matar-ai", "symbol": "matar", @@ -40114,11 +40414,6 @@ "symbol": "maxi", "name": "Maxi" }, - { - "id": "maxi-barsik", - "symbol": "maxib", - "name": "Maxi Barsik" - }, { "id": "maximus", "symbol": "maxi", @@ -40634,11 +40929,6 @@ "symbol": "memeetf", "name": "Meme ETF" }, - { - "id": "memefi", - "symbol": "memefi", - "name": "MemeFi" - }, { "id": "memefi-toybox-404", "symbol": "toybox", @@ -41624,6 +41914,16 @@ "symbol": "mfet", "name": "MFET" }, + { + "id": "m-ga", + "symbol": "$ωmσga", + "name": "ΩMΣGA" + }, + { + "id": "mgga", + "symbol": "mgga", + "name": "Mgga" + }, { "id": "mgold", "symbol": "mgt", @@ -41724,6 +42024,11 @@ "symbol": "mbasis", "name": "Midas Basis Trading Token" }, + { + "id": "midas-btc-yield-token", + "symbol": "mbtc", + "name": "Midas BTC Yield Token" + }, { "id": "midas-mtbill", "symbol": "mtbill", @@ -41754,6 +42059,11 @@ "symbol": "miidas", "name": "Miidas" }, + { + "id": "mikawa-inu-2", + "symbol": "shikoku", + "name": "Mikawa Inu" + }, { "id": "mikeneko", "symbol": "mike", @@ -41849,11 +42159,6 @@ "symbol": "sweg69", "name": "milleniumsweghunter69" }, - { - "id": "millenniumclub", - "symbol": "mclb", - "name": "MillenniumClub Coin [OLD]" - }, { "id": "millenniumclub-coin-new", "symbol": "mclb", @@ -42004,11 +42309,6 @@ "symbol": "mnb", "name": "Mineable" }, - { - "id": "mine-ai", - "symbol": "mai", - "name": "Mine AI" - }, { "id": "minebase", "symbol": "mbase", @@ -42254,11 +42554,6 @@ "symbol": "mxm", "name": "MixMob" }, - { - "id": "mixtoearn", - "symbol": "mte", - "name": "MixToEarn" - }, { "id": "mizar", "symbol": "mzr", @@ -43054,11 +43349,6 @@ "symbol": "moon", "name": "r/CryptoCurrency Moons" }, - { - "id": "moon-air", - "symbol": "moonair", - "name": "Moon Air" - }, { "id": "moon-app", "symbol": "app", @@ -43844,11 +44134,6 @@ "symbol": "usdc", "name": "Multichain Bridged USDC (Moonbeam)" }, - { - "id": "multichain-bridged-usdc-syscoin", - "symbol": "usdc", - "name": "Multichain Bridged USDC (Syscoin)" - }, { "id": "multichain-bridged-usdc-telos", "symbol": "usdc", @@ -43859,11 +44144,6 @@ "symbol": "usdt_t", "name": "Multichain Bridged USDT (BitTorrent)" }, - { - "id": "multichain-bridged-usdt-syscoin", - "symbol": "usdt", - "name": "Multichain Bridged USDT (Syscoin)" - }, { "id": "multichain-bridged-wbtc-energi", "symbol": "wbtc", @@ -44404,6 +44684,11 @@ "symbol": "naka", "name": "Nakamoto Games" }, + { + "id": "naked-jim", + "symbol": "$jim", + "name": "Naked Jim" + }, { "id": "nals", "symbol": "nals", @@ -44529,6 +44814,11 @@ "symbol": "nxn", "name": "Naxion" }, + { + "id": "naym", + "symbol": "naym", + "name": "Naym" + }, { "id": "nbl", "symbol": "nbl", @@ -44824,11 +45114,6 @@ "symbol": "usdn", "name": "Neptune USD" }, - { - "id": "neptunex", - "symbol": "nptx", - "name": "NeptuneX" - }, { "id": "nerdbot", "symbol": "nerd", @@ -44889,11 +45174,6 @@ "symbol": "nesta", "name": "Nest Arcade" }, - { - "id": "nestegg-coin", - "symbol": "egg", - "name": "NestEgg Coin" - }, { "id": "nestree", "symbol": "egg", @@ -45174,11 +45454,6 @@ "symbol": "nyt", "name": "New Year" }, - { - "id": "newyorkcoin", - "symbol": "nyc", - "name": "NewYorkCoin" - }, { "id": "newyork-exchange", "symbol": "nye", @@ -45744,16 +46019,16 @@ "symbol": "node", "name": "Nodez" }, - { - "id": "nodifiai", - "symbol": "nodifi", - "name": "NodifiAI" - }, { "id": "nodle-network", "symbol": "nodl", "name": "Nodle Network" }, + { + "id": "nofap", + "symbol": "nofap", + "name": "nofap" + }, { "id": "noggles", "symbol": "nogs", @@ -45884,6 +46159,11 @@ "symbol": "nonja", "name": "Nonja" }, + { + "id": "non-of-us", + "symbol": "non", + "name": "NON OF US" + }, { "id": "non-playable-coin", "symbol": "npc", @@ -46004,6 +46284,11 @@ "symbol": "uno", "name": "UNO" }, + { + "id": "not-a-cult", + "symbol": "cult", + "name": "NOT A CULT" + }, { "id": "notai", "symbol": "notai", @@ -46249,6 +46534,11 @@ "symbol": "nlk", "name": "NuLink" }, + { + "id": "null-matrix", + "symbol": "null", + "name": "NULL MATRIX" + }, { "id": "null-social-finance", "symbol": "nsf", @@ -46409,6 +46699,11 @@ "symbol": "nxt", "name": "NXTChain" }, + { + "id": "nx-token", + "symbol": "nx", + "name": "NX Token" + }, { "id": "nxusd", "symbol": "nxusd", @@ -46734,6 +47029,11 @@ "symbol": "ofe", "name": "Ofero" }, + { + "id": "offcial-mascot-of-the-holy-year", + "symbol": "luce", + "name": "Luce" + }, { "id": "official-arbitrum-bridged-usdc-arbitrum-nova", "symbol": "usdc", @@ -47579,6 +47879,11 @@ "symbol": "osqth", "name": "Opyn Squeeth" }, + { + "id": "opz", + "symbol": "opz", + "name": "OPZ" + }, { "id": "oracle-2", "symbol": "oracle", @@ -48129,11 +48434,6 @@ "symbol": "out", "name": "Outter Finance" }, - { - "id": "oval3", - "symbol": "ovl3", - "name": "OVAL3" - }, { "id": "overclock-staked-sol", "symbol": "clocksol", @@ -48889,6 +49189,11 @@ "symbol": "party", "name": "Party" }, + { + "id": "party-3", + "symbol": "party", + "name": "Party" + }, { "id": "partyhat-meme", "symbol": "phat", @@ -49604,6 +49909,11 @@ "symbol": "pepek", "name": "Pepek Philippe" }, + { + "id": "pepe-krc20", + "symbol": "$pepe", + "name": "Pepe KRC20" + }, { "id": "pepe-le-pew-coin", "symbol": "$plpc", @@ -50094,11 +50404,6 @@ "symbol": "phpc", "name": "Philippine Peso Coin" }, - { - "id": "phobos-token", - "symbol": "pbos", - "name": "Phobos Token" - }, { "id": "phoenic-token", "symbol": "pnic", @@ -50279,6 +50584,11 @@ "symbol": "$piggy", "name": "PIGGED•BY•PIGGY" }, + { + "id": "pigu", + "symbol": "pigu", + "name": "PIGU" + }, { "id": "pikaboss", "symbol": "pika", @@ -50499,6 +50809,11 @@ "symbol": "pirb", "name": "PIRB" }, + { + "id": "pisces", + "symbol": "pisces", + "name": "Pisces" + }, { "id": "pisscoin", "symbol": "piss", @@ -51014,6 +51329,11 @@ "symbol": "pokt", "name": "Pocket Network" }, + { + "id": "pocket-rocket", + "symbol": "$rocket", + "name": "Pocket Rocket" + }, { "id": "pocket-watcher-bot", "symbol": "pocket", @@ -51244,11 +51564,6 @@ "symbol": "polter", "name": "Polter.finance" }, - { - "id": "polybet", - "symbol": "pbt", - "name": "PolyBet" - }, { "id": "polycat-finance", "symbol": "fish", @@ -51909,6 +52224,11 @@ "symbol": "power", "name": "POWER" }, + { + "id": "power-ai", + "symbol": "powerai", + "name": "Power AI" + }, { "id": "powercity-earn-protocol", "symbol": "earn", @@ -51989,6 +52309,11 @@ "symbol": "preai", "name": "Predict Crypto" }, + { + "id": "prefrontal-cortex-convo-agent-by-virtuals", + "symbol": "convo", + "name": "Prefrontal Cortex Convo Agent by Virtuals" + }, { "id": "prema", "symbol": "prmx", @@ -52099,6 +52424,11 @@ "symbol": "primeeth", "name": "Prime Staked ETH" }, + { + "id": "primexai", + "symbol": "$pxai", + "name": "PRIMEXAI" + }, { "id": "primex-finance", "symbol": "pmx", @@ -52229,6 +52559,11 @@ "symbol": "pfl", "name": "Professional Fighters League Fan Token" }, + { + "id": "project89", + "symbol": "project89", + "name": "Project89" + }, { "id": "project-ailey", "symbol": "ale", @@ -52339,11 +52674,6 @@ "symbol": "pel", "name": "Propel" }, - { - "id": "property-blockchain-trade", - "symbol": "pbt", - "name": "PROPERTY BLOCKCHAIN TRADE" - }, { "id": "prophet", "symbol": "pro", @@ -52419,11 +52749,6 @@ "symbol": "prai", "name": "ProtonAI" }, - { - "id": "proton-coin", - "symbol": "pro", - "name": "Proton Coin" - }, { "id": "proton-loan", "symbol": "loan", @@ -53714,6 +54039,11 @@ "symbol": "rly", "name": "Rally" }, + { + "id": "ramestta", + "symbol": "rama", + "name": "Ramestta" + }, { "id": "ramifi", "symbol": "ram", @@ -54169,6 +54499,11 @@ "symbol": "rbt", "name": "Reboot World" }, + { + "id": "reborn-2", + "symbol": "rebd", + "name": "REBORN" + }, { "id": "rebus", "symbol": "rebus", @@ -54359,6 +54694,11 @@ "symbol": "rfl", "name": "Reflect" }, + { + "id": "reflectionai", + "symbol": "rect", + "name": "ReflectionAI" + }, { "id": "reflecto", "symbol": "rto", @@ -54724,6 +55064,11 @@ "symbol": "rapr", "name": "RetardedAPR" }, + { + "id": "retardia", + "symbol": "retardia", + "name": "RETARDIA" + }, { "id": "retardio", "symbol": "retardio", @@ -54849,6 +55194,11 @@ "symbol": "rex", "name": "Rex" }, + { + "id": "rexas-finance", + "symbol": "rxs", + "name": "Rexas Finance" + }, { "id": "rex-token", "symbol": "xrx", @@ -55099,6 +55449,11 @@ "symbol": "rivus", "name": "RivusDAO" }, + { + "id": "rixen-finance", + "symbol": "rixen", + "name": "Rixen Finance" + }, { "id": "rizo", "symbol": "rizo", @@ -55484,6 +55839,11 @@ "symbol": "rosx", "name": "Roseon" }, + { + "id": "rosie-the-robot", + "symbol": "rosie", + "name": "Rosie the Robot" + }, { "id": "rosnet", "symbol": "rosnet", @@ -55559,6 +55919,11 @@ "symbol": "rpgmai", "name": "RPG Maker Ai" }, + { + "id": "rserg", + "symbol": "rserg", + "name": "rsERG" + }, { "id": "r-snoofi", "symbol": "r/snoofi", @@ -55714,11 +56079,6 @@ "symbol": "runi", "name": "RunesTerminal" }, - { - "id": "runestone-bot", - "symbol": "rsb", - "name": "RuneStone Bot" - }, { "id": "runes-x-bitcoin", "symbol": "✖", @@ -55744,11 +56104,6 @@ "symbol": "runner", "name": "Runner" }, - { - "id": "rupee", - "symbol": "rup", - "name": "Rupee" - }, { "id": "rupiah-token", "symbol": "idrt", @@ -55789,6 +56144,11 @@ "symbol": "rwas", "name": "RWA Finance" }, + { + "id": "rwa-inc", + "symbol": "rwa", + "name": "RWA Inc." + }, { "id": "rwax", "symbol": "rwax", @@ -56034,11 +56394,6 @@ "symbol": "sfp", "name": "SafePal" }, - { - "id": "safereum", - "symbol": "safereum", - "name": "SAFEREUM" - }, { "id": "safe-road-club", "symbol": "src", @@ -56099,6 +56454,11 @@ "symbol": "sage", "name": "Sage Universe" }, + { + "id": "sagittarius", + "symbol": "sagit", + "name": "Sagittarius" + }, { "id": "sai", "symbol": "sai", @@ -56219,6 +56579,11 @@ "symbol": "art", "name": "Salvor" }, + { + "id": "sam", + "symbol": "sam", + "name": "SAM" + }, { "id": "sam-bankmeme-fried", "symbol": "sbf", @@ -56621,8 +56986,8 @@ }, { "id": "scaleton", - "symbol": "scale", - "name": "Scaleton" + "symbol": "dust", + "name": "DeDust" }, { "id": "scalex", @@ -56739,6 +57104,11 @@ "symbol": "scorai", "name": "Staking Compound ORAI" }, + { + "id": "scorpio", + "symbol": "scorpio", + "name": "Scorpio" + }, { "id": "scorpion", "symbol": "scorp", @@ -57024,6 +57394,11 @@ "symbol": "seed", "name": "Seed.Photo" }, + { + "id": "seedworld", + "symbol": "$sworld", + "name": "Seedworld" + }, { "id": "seek-tiger", "symbol": "sti", @@ -57124,11 +57499,6 @@ "symbol": "self", "name": "SelfKey" }, - { - "id": "self-operating-ai", - "symbol": "soai", - "name": "Self Operating AI" - }, { "id": "self-token", "symbol": "self", @@ -57269,6 +57639,11 @@ "symbol": "upp", "name": "Sentinel Protocol" }, + { + "id": "sentra", + "symbol": "$stra", + "name": "Sentra" + }, { "id": "sentre", "symbol": "sntr", @@ -57349,6 +57724,11 @@ "symbol": "🤷", "name": "SGN•SHO•GA•NAI•SGN (Runes)" }, + { + "id": "sgyd", + "symbol": "sgyd", + "name": "sGYD" + }, { "id": "shack", "symbol": "shack", @@ -57404,6 +57784,11 @@ "symbol": "gang", "name": "Shadow Wizard Money Gang" }, + { + "id": "shaicoin", + "symbol": "sha", + "name": "Shaicoin" + }, { "id": "shakaka", "symbol": "shkk", @@ -57524,6 +57909,11 @@ "symbol": "sai", "name": "Sharpe AI" }, + { + "id": "sharpei", + "symbol": "shar", + "name": "SHARPEI" + }, { "id": "shawk", "symbol": "shawk", @@ -57654,11 +58044,6 @@ "symbol": "shiba", "name": "Shiba Armstrong" }, - { - "id": "shibabitcoin", - "symbol": "shibtc", - "name": "Shibabitcoin [OLD]" - }, { "id": "shibabitcoin-2", "symbol": "shibtc", @@ -58024,6 +58409,11 @@ "symbol": "shog", "name": "SHOG" }, + { + "id": "shoggoth", + "symbol": "shoggoth", + "name": "Shoggoth" + }, { "id": "shoki", "symbol": "shoki", @@ -58204,6 +58594,11 @@ "symbol": "sigma", "name": "SIGMA" }, + { + "id": "sigma-ai-terminal", + "symbol": "sai", + "name": "Sigma AI Terminal" + }, { "id": "sign", "symbol": "sign", @@ -59209,11 +59604,6 @@ "symbol": "inf", "name": "Sanctum Infinity" }, - { - "id": "social-capitalism-2", - "symbol": "socap", - "name": "Social Capitalism" - }, { "id": "social-good-project", "symbol": "sg", @@ -59237,7 +59627,7 @@ { "id": "societe-generale-forge-eurcv", "symbol": "eurcv", - "name": "Societe Generale-FORGE EURCV" + "name": "EUR CoinVertible" }, { "id": "sociocat", @@ -59459,11 +59849,6 @@ "symbol": "seg", "name": "Solar Energy" }, - { - "id": "solareum-2", - "symbol": "solar", - "name": "Solareum" - }, { "id": "solareum-3", "symbol": "solareum", @@ -59784,6 +60169,11 @@ "symbol": "smoon", "name": "Solmoon BSC" }, + { + "id": "solnic", + "symbol": "solnic", + "name": "Solnic" + }, { "id": "solnote", "symbol": "note", @@ -59964,11 +60354,6 @@ "symbol": "solx", "name": "Sol X" }, - { - "id": "solxdex", - "symbol": "solx", - "name": "SolXdex" - }, { "id": "solxencat", "symbol": "xencat", @@ -60169,6 +60554,11 @@ "symbol": "soph", "name": "SophiaVerse" }, + { + "id": "sophie-klein", + "symbol": "klein", + "name": "Sophie Klein" + }, { "id": "sophon", "symbol": "soph", @@ -60299,11 +60689,6 @@ "symbol": "soul", "name": "Soul Scanner" }, - { - "id": "soul-society", - "symbol": "hon", - "name": "Soul Society" - }, { "id": "soul-swap", "symbol": "soul", @@ -60379,6 +60764,11 @@ "symbol": "air", "name": "Spacebar" }, + { + "id": "spacebucks", + "symbol": "sbx", + "name": "Spacebucks" + }, { "id": "spacecatch", "symbol": "catch", @@ -60409,11 +60799,6 @@ "symbol": "fcon", "name": "SpaceFalcon" }, - { - "id": "spacefi", - "symbol": "space", - "name": "SpaceFi (Evmos)" - }, { "id": "spacefi-zksync", "symbol": "space", @@ -60634,11 +61019,6 @@ "symbol": "spf", "name": "Spectrum Finance" }, - { - "id": "spectrum-marketplace", - "symbol": "spec", - "name": "Spectrum Marketplace" - }, { "id": "speculate", "symbol": "spec", @@ -60989,6 +61369,11 @@ "symbol": "spx", "name": "SPX6900" }, + { + "id": "spx6900-2-0", + "symbol": "spx2.0", + "name": "SPX6900 2.0" + }, { "id": "spyro", "symbol": "spyro", @@ -62469,11 +62854,21 @@ "symbol": "slt", "name": "Sui Launch Token" }, + { + "id": "suilend", + "symbol": "send", + "name": "Suilend" + }, { "id": "suiman", "symbol": "suiman", "name": "Suiman" }, + { + "id": "sui-monster", + "symbol": "suimon", + "name": "Sui Monster" + }, { "id": "suinami", "symbol": "nami", @@ -63234,6 +63629,11 @@ "symbol": "sybl", "name": "Sybulls" }, + { + "id": "sydney", + "symbol": "sydney", + "name": "Sydney" + }, { "id": "sygnum-fiusd-liquidity-fund", "symbol": "fiusd", @@ -63404,6 +63804,11 @@ "symbol": "sny", "name": "Synthetify" }, + { + "id": "synthetix-usdx", + "symbol": "usdx", + "name": "Synthetix USDx" + }, { "id": "synthswap", "symbol": "synth", @@ -63554,6 +63959,11 @@ "symbol": "tal", "name": "TalentIDO" }, + { + "id": "talent-protocol", + "symbol": "talent", + "name": "Talent Protocol" + }, { "id": "taler", "symbol": "tlr", @@ -63614,11 +64024,6 @@ "symbol": "tnt", "name": "Tangle Network" }, - { - "id": "tangle-network-2", - "symbol": "tnet", - "name": "Tangle Network" - }, { "id": "tangleswap-void", "symbol": "void", @@ -63719,6 +64124,11 @@ "symbol": "taoshard", "name": "TAO Subnet Sharding" }, + { + "id": "taotools", + "symbol": "taotools", + "name": "TAOTools" + }, { "id": "taounity", "symbol": "utao", @@ -63764,11 +64174,6 @@ "symbol": "tara", "name": "Tara Coin" }, - { - "id": "tara-token", - "symbol": "tara", - "name": "TARA TOKEN" - }, { "id": "taraxa", "symbol": "tara", @@ -63829,11 +64234,21 @@ "symbol": "tme", "name": "Tate Stop" }, + { + "id": "tate-terminal", + "symbol": "tate", + "name": "Tate Terminal" + }, { "id": "tatsu", "symbol": "tatsu", "name": "Tatsu" }, + { + "id": "taurus-2", + "symbol": "taurus", + "name": "Taurus" + }, { "id": "taxa-token", "symbol": "txt", @@ -63844,6 +64259,11 @@ "symbol": "farm", "name": "TaxFarm.ing" }, + { + "id": "taxsolutions-ai", + "symbol": "tsai", + "name": "TaxSolutions AI" + }, { "id": "taylor-swift-s-cat", "symbol": "benji", @@ -64149,6 +64569,11 @@ "symbol": "term", "name": "Term Finance" }, + { + "id": "terminal-of-fun", + "symbol": "fun", + "name": "terminal of fun" + }, { "id": "terminus", "symbol": "tmns", @@ -64729,6 +65154,11 @@ "symbol": "ton", "name": "Toncoin" }, + { + "id": "the-ordzaar-runes", + "symbol": "zaar", + "name": "THE•ORDZAAR•RUNES (Runes)" + }, { "id": "theos", "symbol": "theos", @@ -64784,6 +65214,11 @@ "symbol": "root", "name": "The Root Network" }, + { + "id": "the-rugcoon", + "symbol": "rugga", + "name": "The RugCoon" + }, { "id": "the-rug-game", "symbol": "trg", @@ -65614,11 +66049,6 @@ "symbol": "usdot", "name": "Token Teknoloji A.Ş. USD" }, - { - "id": "tokenwatch", - "symbol": "tokenwatch", - "name": "TokenWatch" - }, { "id": "tokero-levelup-token", "symbol": "tokero", @@ -65814,6 +66244,11 @@ "symbol": "kong", "name": "TON KONG" }, + { + "id": "ton-launchpad", + "symbol": "tld", + "name": "Ton Launchpad" + }, { "id": "tonminer", "symbol": "1rus", @@ -65874,11 +66309,6 @@ "symbol": "stars", "name": "Ton Stars" }, - { - "id": "tonstarter", - "symbol": "tos", - "name": "TONStarter" - }, { "id": "ton-tiger", "symbol": "tiger", @@ -66384,11 +66814,6 @@ "symbol": "tx20", "name": "Trex20" }, - { - "id": "trezarcoin", - "symbol": "tzc", - "name": "TrezarCoin" - }, { "id": "triall", "symbol": "trl", @@ -66674,6 +67099,16 @@ "symbol": "trump", "name": "Trump45Coin" }, + { + "id": "trump-47", + "symbol": "47", + "name": "TRUMP 47" + }, + { + "id": "trump-ai", + "symbol": "$traimp", + "name": "Trump AI" + }, { "id": "trump-cards-fraction-token", "symbol": "itrump", @@ -66717,7 +67152,12 @@ { "id": "trump-wif-ear", "symbol": "wifear", - "name": "Trump wif ear" + "name": "TRUMP WIF EAR" + }, + { + "id": "trust-2", + "symbol": "trust", + "name": "TRUST" }, { "id": "trustbase", @@ -66774,6 +67214,11 @@ "symbol": "trp", "name": "Truth Pay" }, + { + "id": "truth-terminal-s-hentai", + "symbol": "hentai", + "name": "Truth Terminal's Hentai" + }, { "id": "trxi-tron", "symbol": "trxi", @@ -66790,9 +67235,9 @@ "name": "TryHards" }, { - "id": "tsilver", - "symbol": "txag", - "name": "tSILVER" + "id": "tryton", + "symbol": "trt", + "name": "TryTON" }, { "id": "tsla6900", @@ -66994,6 +67439,16 @@ "symbol": "twinny", "name": "Twinny" }, + { + "id": "twin-protocol", + "symbol": "twin", + "name": "Twin Protocol" + }, + { + "id": "twiskers", + "symbol": "twx", + "name": "Twiskers" + }, { "id": "twood", "symbol": "twood", @@ -67109,11 +67564,6 @@ "symbol": "ubxs", "name": "UBXS" }, - { - "id": "uca", - "symbol": "uca", - "name": "UCA Coin" - }, { "id": "ucash", "symbol": "ucash", @@ -67164,11 +67614,6 @@ "symbol": "ufc", "name": "UFC Fan Token" }, - { - "id": "ufocoin", - "symbol": "ufo", - "name": "Uniform Fiscal Object" - }, { "id": "ufo-gaming", "symbol": "ufo", @@ -67809,11 +68254,6 @@ "symbol": "und", "name": "Unstoppable DeFi" }, - { - "id": "unvaxxed-sperm", - "symbol": "nubtc", - "name": "Unvaxxed Sperm" - }, { "id": "unvaxxed-sperm-2", "symbol": "unvaxsperm", @@ -68204,6 +68644,11 @@ "symbol": "usm", "name": "USMeme" }, + { + "id": "usual", + "symbol": "usual", + "name": "Usual" + }, { "id": "usual-usd", "symbol": "usd0", @@ -68234,6 +68679,11 @@ "symbol": "utx", "name": "UTIX" }, + { + "id": "uton", + "symbol": "uton", + "name": "uTON" + }, { "id": "utopia", "symbol": "crp", @@ -68514,11 +68964,6 @@ "symbol": "veco", "name": "Veco" }, - { - "id": "vecrv-dao-yvault", - "symbol": "yve-crvdao", - "name": "veCRV-DAO yVault" - }, { "id": "vectorchat-ai", "symbol": "chat", @@ -68834,6 +69279,11 @@ "symbol": "vra", "name": "Verasity" }, + { + "id": "verda-city", + "symbol": "verda", + "name": "Verda City" + }, { "id": "verge", "symbol": "xvg", @@ -69169,6 +69619,11 @@ "symbol": "vc", "name": "VinuChain" }, + { + "id": "viora-is-online", + "symbol": "viora", + "name": "VIORA IS ONLINE" + }, { "id": "viper-2", "symbol": "viper", @@ -69194,6 +69649,11 @@ "symbol": "vgo", "name": "Virgo" }, + { + "id": "virgo-2", + "symbol": "virgo", + "name": "Virgo" + }, { "id": "viridis-network", "symbol": "vrd", @@ -69334,11 +69794,6 @@ "symbol": "wvtrs", "name": "Vitreus" }, - { - "id": "vitruvian-nexus-protocol", - "symbol": "vnpt", - "name": "Vitruvian Nexus Protocol" - }, { "id": "vivex", "symbol": "$vivx", @@ -69369,6 +69824,11 @@ "symbol": "vizslaswap", "name": "VizslaSwap" }, + { + "id": "vkax", + "symbol": "vkax", + "name": "VKAX" + }, { "id": "vlaunch-2", "symbol": "vpad", @@ -69649,11 +70109,6 @@ "symbol": "waffles", "name": "Waffles" }, - { - "id": "wageron", - "symbol": "wager", - "name": "WagerOn" - }, { "id": "wagerr", "symbol": "wgr", @@ -69704,11 +70159,6 @@ "symbol": "wagmigames", "name": "WAGMI Games" }, - { - "id": "wagyu-protocol", - "symbol": "wagyu", - "name": "Wagyu Protocol" - }, { "id": "wagyuswap", "symbol": "wag", @@ -69944,6 +70394,11 @@ "symbol": "warped", "name": "Warped Games" }, + { + "id": "warp-green-bridged-usdc-chia", + "symbol": "wusdc.b", + "name": "Warp.Green Bridged USDC (Chia)" + }, { "id": "warpie", "symbol": "$warpie", @@ -69984,11 +70439,6 @@ "symbol": "wat", "name": "Wat BNB" }, - { - "id": "watcher-ai", - "symbol": "wai", - "name": "Watcher AI" - }, { "id": "watchtowers-ai", "symbol": "wts", @@ -70319,6 +70769,11 @@ "symbol": "wegro", "name": "WeGro" }, + { + "id": "weird-medieval-memes", + "symbol": "wmm", + "name": "Weird Medieval Memes" + }, { "id": "weirdo", "symbol": "weirdo", @@ -70344,6 +70799,11 @@ "symbol": "wend", "name": "Wellnode" }, + { + "id": "welshare-health-token", + "symbol": "wel", + "name": "Welshare Health Token" + }, { "id": "welsh-corgi", "symbol": "corgi", @@ -70392,7 +70852,7 @@ { "id": "wen-5", "symbol": "wen", - "name": "$WEN" + "name": "$WEN (Stacks)" }, { "id": "weniscoin", @@ -70539,6 +70999,11 @@ "symbol": "wtf", "name": "WHAT•THE•FRUCK (Runes)" }, + { + "id": "wheelchair-cat", + "symbol": "crippl", + "name": "Wheelchair Cat" + }, { "id": "when", "symbol": "when", @@ -70629,11 +71094,6 @@ "symbol": "whale", "name": "White Whale" }, - { - "id": "white-yorkshire", - "symbol": "wsh", - "name": "White Yorkshire" - }, { "id": "whole-earth-coin", "symbol": "wec", @@ -70839,6 +71299,11 @@ "symbol": "wnz", "name": "Winnerz" }, + { + "id": "winnie-the-poodle", + "symbol": "winnie", + "name": "Winnie the Poodle" + }, { "id": "winr-protocol", "symbol": "winr", @@ -70919,6 +71384,11 @@ "symbol": "wit", "name": "Witnet" }, + { + "id": "wiz", + "symbol": "wiz", + "name": "Wiz" + }, { "id": "wizard-cat", "symbol": "wizard", @@ -71084,6 +71554,11 @@ "symbol": "ballz", "name": "WolfWifBallz" }, + { + "id": "wolt", + "symbol": "wolt", + "name": "Wolt" + }, { "id": "wolverinu-2", "symbol": "wolverinu", @@ -71249,6 +71724,11 @@ "symbol": "wod", "name": "World of Defish" }, + { + "id": "world-of-dypians", + "symbol": "wod", + "name": "World of Dypians" + }, { "id": "world-peace-coin", "symbol": "wpc", @@ -71319,6 +71799,11 @@ "symbol": "wpay", "name": "WPAY" }, + { + "id": "wpphmrmbdtrsj2p0eb69i", + "symbol": "meta", + "name": "Wpphmrmbdtrsj2p0eb69i" + }, { "id": "wpt-investing-corp", "symbol": "wpt", @@ -72014,11 +72499,6 @@ "symbol": "wokb", "name": "Wrapped OKB" }, - { - "id": "wrapped-omax", - "symbol": "womax", - "name": "Wrapped OMAX" - }, { "id": "wrapped-one", "symbol": "wone", @@ -72114,6 +72594,11 @@ "symbol": "wsei", "name": "Wrapped SEI" }, + { + "id": "wrapped-sei-universal", + "symbol": "usei", + "name": "Wrapped SEI (Universal)" + }, { "id": "wrapped-shiden-network", "symbol": "wsdn", @@ -72154,11 +72639,6 @@ "symbol": "wsta", "name": "Wrapped Statera" }, - { - "id": "wrapped-stbtc", - "symbol": "wstbtc", - "name": "Wrapped stBTC" - }, { "id": "wrapped-steth", "symbol": "wsteth", @@ -72309,6 +72789,11 @@ "symbol": "wxfi", "name": "Wrapped XFI" }, + { + "id": "wrapped-xhopr", + "symbol": "wxhopr", + "name": "Wrapped xHOPR" + }, { "id": "wrapped-xrp", "symbol": "wxrp", @@ -72384,11 +72869,6 @@ "symbol": "x2y2", "name": "X2Y2" }, - { - "id": "x42-protocol", - "symbol": "x42", - "name": "X42 Protocol" - }, { "id": "x7dao", "symbol": "x7dao", @@ -72519,11 +72999,6 @@ "symbol": "xcad", "name": "XCAD Network" }, - { - "id": "xcad-network-play", - "symbol": "play", - "name": "Play Token" - }, { "id": "xcarnival", "symbol": "xcv", @@ -72669,6 +73144,11 @@ "symbol": "xels", "name": "XELS" }, + { + "id": "x-empire", + "symbol": "x", + "name": "X Empire" + }, { "id": "xena-finance", "symbol": "xen", @@ -72974,6 +73454,11 @@ "symbol": "xp", "name": "XP" }, + { + "id": "xpack", + "symbol": "xpack", + "name": "xPACK" + }, { "id": "xpad-pro", "symbol": "xpp", @@ -74149,11 +74634,6 @@ "symbol": "zenith", "name": "Zenith Chain" }, - { - "id": "zenith-wallet", - "symbol": "zw", - "name": "Zenith Wallet" - }, { "id": "zenland", "symbol": "zenf", @@ -74639,16 +75119,16 @@ "symbol": ":zkt:", "name": "ZkTsunami" }, - { - "id": "zkzone", - "symbol": "zkz", - "name": "Zkzone" - }, { "id": "zmine", "symbol": "zmn", "name": "ZMINE" }, + { + "id": "znd-token", + "symbol": "znd", + "name": "ZND Token" + }, { "id": "zodiacsv2", "symbol": "zdcv2", diff --git a/packages/utils/src/scripts/gecko/gecko-networks.json b/packages/utils/src/scripts/gecko/gecko-networks.json index 964affb43..006428b7a 100644 --- a/packages/utils/src/scripts/gecko/gecko-networks.json +++ b/packages/utils/src/scripts/gecko/gecko-networks.json @@ -495,16 +495,6 @@ "large": "https://coin-images.coingecko.com/asset_platforms/images/22181/large/zenon.jpg?1728643155" } }, - { - "id": "xai", - "name": "XAI", - "native_coin_id": "xai-blockchain", - "image": { - "thumb": "https://coin-images.coingecko.com/asset_platforms/images/189/thumb/xai.png?1708573604", - "small": "https://coin-images.coingecko.com/asset_platforms/images/189/small/xai.png?1708573604", - "large": "https://coin-images.coingecko.com/asset_platforms/images/189/large/xai.png?1708573604" - } - }, { "id": "tron", "name": "TRON", @@ -697,6 +687,17 @@ "large": "https://coin-images.coingecko.com/asset_platforms/images/166/large/Screenshot_2023-12-20_at_3.31.33%E2%80%AFPM.png?1706606794" } }, + { + "id": "xai", + "chain_identifier": 660279, + "name": "XAI", + "native_coin_id": "xai-blockchain", + "image": { + "thumb": "https://coin-images.coingecko.com/asset_platforms/images/189/thumb/xai.png?1708573604", + "small": "https://coin-images.coingecko.com/asset_platforms/images/189/small/xai.png?1708573604", + "large": "https://coin-images.coingecko.com/asset_platforms/images/189/large/xai.png?1708573604" + } + }, { "id": "tezos", "name": "Tezos", @@ -3166,6 +3167,17 @@ "large": "https://coin-images.coingecko.com/asset_platforms/images/47/large/BOBA.png?1706606462" } }, + { + "id": "morph-l2", + "chain_identifier": 2818, + "name": "Morph L2", + "native_coin_id": "weth", + "image": { + "thumb": "https://coin-images.coingecko.com/asset_platforms/images/22185/thumb/morph.jpg?1729659940", + "small": "https://coin-images.coingecko.com/asset_platforms/images/22185/small/morph.jpg?1729659940", + "large": "https://coin-images.coingecko.com/asset_platforms/images/22185/large/morph.jpg?1729659940" + } + }, { "id": "aelf", "name": "AELF", diff --git a/raw-svgs/networks/branded/lumio.svg b/raw-svgs/networks/branded/lumio.svg new file mode 100644 index 000000000..36089e401 --- /dev/null +++ b/raw-svgs/networks/branded/lumio.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/raw-svgs/networks/branded/moonbase-alpha.svg b/raw-svgs/networks/branded/moonbase-alpha.svg new file mode 100644 index 000000000..3075d166a --- /dev/null +++ b/raw-svgs/networks/branded/moonbase-alpha.svg @@ -0,0 +1,3 @@ + + + diff --git a/raw-svgs/networks/branded/taiko.svg b/raw-svgs/networks/branded/taiko.svg new file mode 100644 index 000000000..4129b7c3c --- /dev/null +++ b/raw-svgs/networks/branded/taiko.svg @@ -0,0 +1,3 @@ + + + diff --git a/raw-svgs/networks/mono/moonbase-alpha.svg b/raw-svgs/networks/mono/moonbase-alpha.svg new file mode 100644 index 000000000..e00447e4d --- /dev/null +++ b/raw-svgs/networks/mono/moonbase-alpha.svg @@ -0,0 +1,3 @@ + + + diff --git a/raw-svgs/networks/mono/taiko.svg b/raw-svgs/networks/mono/taiko.svg new file mode 100644 index 000000000..1c6a1c596 --- /dev/null +++ b/raw-svgs/networks/mono/taiko.svg @@ -0,0 +1,3 @@ + + +